Add simple test for eth_estimateGas
This commit is contained in:
parent
2c1c3d6c76
commit
d19a7f7c04
|
@ -87,6 +87,12 @@ proc doTests =
|
||||||
let blockNum = state.blockheader.blockNumber
|
let blockNum = state.blockheader.blockNumber
|
||||||
var r = waitFor client.eth_getBalance(address.toEthAddressStr, "0x" & blockNum.toHex)
|
var r = waitFor client.eth_getBalance(address.toEthAddressStr, "0x" & blockNum.toHex)
|
||||||
echo r
|
echo r
|
||||||
|
test "eth_estimateGas":
|
||||||
|
let
|
||||||
|
call = EthCall()
|
||||||
|
blockNum = state.blockheader.blockNumber
|
||||||
|
var r = waitFor client.eth_estimateGas(call, "0x" & blockNum.toHex)
|
||||||
|
check r == 21_000
|
||||||
|
|
||||||
rpcServer.stop()
|
rpcServer.stop()
|
||||||
rpcServer.close()
|
rpcServer.close()
|
||||||
|
|
Loading…
Reference in New Issue