This commit is contained in:
Felipe Andrade 2023-05-09 10:26:01 -07:00
parent b95f2a6a62
commit 020bc66243

@ -73,7 +73,11 @@ func TestRPCCacheImmutableRPCs(t *testing.T) {
Params: []byte(`["earliest", false]`), Params: []byte(`["earliest", false]`),
ID: ID, ID: ID,
}, },
res: nil, res: &RPCRes{
JSONRPC: "2.0",
Result: `{"difficulty": "0x1", "number": "0x1"}`,
ID: ID,
},
name: "eth_getBlockByNumber earliest", name: "eth_getBlockByNumber earliest",
}, },
{ {
@ -137,7 +141,11 @@ func TestRPCCacheImmutableRPCs(t *testing.T) {
Params: []byte(`["earliest", "0x2", false]`), Params: []byte(`["earliest", "0x2", false]`),
ID: ID, ID: ID,
}, },
res: nil, res: &RPCRes{
JSONRPC: "2.0",
Result: `[{"number": "0x1"}, {"number": "0x2"}]`,
ID: ID,
},
name: "eth_getBlockRange earliest", name: "eth_getBlockRange earliest",
}, },
} }