mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-20 03:36:44 +00:00
Fix tests
This commit is contained in:
parent
715a328d3d
commit
9d604b88d1
1 changed files with 6 additions and 1 deletions
|
|
@ -358,6 +358,11 @@ func testFilters(t *testing.T, history uint64, noHistory bool) {
|
|||
},
|
||||
{
|
||||
f: sys.NewRangeFilter(int64(rpc.LatestBlockNumber), int64(rpc.FinalizedBlockNumber), nil, nil),
|
||||
err: "invalid block range params",
|
||||
},
|
||||
{
|
||||
f: sys.NewRangeFilter(int64(rpc.LatestBlockNumber), int64(rpc.EarliestBlockNumber), nil, nil),
|
||||
err: "invalid block range params",
|
||||
},
|
||||
{
|
||||
f: sys.NewRangeFilter(int64(rpc.SafeBlockNumber), int64(rpc.LatestBlockNumber), nil, nil),
|
||||
|
|
|
|||
Loading…
Reference in a new issue