mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
eth/filters : filter test fix
This commit is contained in:
parent
1e36e2502f
commit
7ec4f9960e
1 changed files with 1 additions and 1 deletions
|
|
@ -353,7 +353,7 @@ func TestFilters(t *testing.T) {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
f: sys.NewRangeFilter(int64(rpc.PendingBlockNumber), int64(rpc.LatestBlockNumber), nil, nil),
|
f: sys.NewRangeFilter(int64(rpc.PendingBlockNumber), int64(rpc.LatestBlockNumber), nil, nil),
|
||||||
err: "invalid block range",
|
err: errInvalidBlockRange.Error(),
|
||||||
},
|
},
|
||||||
} {
|
} {
|
||||||
logs, err := tc.f.Logs(context.Background())
|
logs, err := tc.f.Logs(context.Background())
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue