From 0899634b6d61226c11046fd4d55b9975f9468bb3 Mon Sep 17 00:00:00 2001 From: coffeepots Date: Mon, 26 Nov 2018 18:13:24 +0000 Subject: [PATCH] Update signatures for eth_call --- tests/rpcclient/ethcallsigs.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/rpcclient/ethcallsigs.nim b/tests/rpcclient/ethcallsigs.nim index 9527c36d1..7c7ab48ce 100644 --- a/tests/rpcclient/ethcallsigs.nim +++ b/tests/rpcclient/ethcallsigs.nim @@ -25,12 +25,12 @@ proc eth_getUncleCountByBlockHash(data: array[32, byte]) proc eth_getUncleCountByBlockNumber(quantityTag: string) proc eth_getCode(data: EthAddressStr, quantityTag: string): HexDataStr proc eth_sign(data:EthAddressStr, message: HexDataStr): HexDataStr +#proc eth_sendRawTransaction(data: string, quantityTag: int): UInt256 +proc eth_call(call: EthCall, quantityTag: string): UInt256 # TODO: Use eth_common types #[proc eth_sendTransaction(obj: EthSend): UInt256 -proc eth_sendRawTransaction(data: string, quantityTag: int): UInt256 -proc eth_call(call: EthCall, quantityTag: string): UInt256 proc eth_estimateGas(call: EthCall, quantityTag: string): UInt256 proc eth_getBlockByHash(data: array[32, byte], fullTransactions: bool): BlockObject proc eth_getBlockByNumber(quantityTag: string, fullTransactions: bool): BlockObject