Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix returned error name
  • Loading branch information
TymKh committed Aug 25, 2025
commit ed3a58739a824f1184e5a25790c619663b5d3c9b
2 changes: 1 addition & 1 deletion rpcclient/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1050,7 +1050,7 @@ func TestCallFlashbots(t *testing.T) {
// check.Contains(err.Error(), "rpc response error")
check.NotNil(res)
check.NotNil(res.Error)
check.Equal("missing block param", res.Error.Message)
check.Equal("missing blockNumber param", res.Error.Message)
check.Equal(-32602, res.Error.Code)
}

Expand Down