From 2a8782ad0473c6bb28fdea26c31f3b1afeb10025 Mon Sep 17 00:00:00 2001 From: nolash Date: Wed, 27 Jan 2021 13:45:03 +0100 Subject: [PATCH] Return hash for tx --- crypto_dev_signer/eth/helper/tx.py | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto_dev_signer/eth/helper/tx.py b/crypto_dev_signer/eth/helper/tx.py index 0fbb586..9e6441b 100644 --- a/crypto_dev_signer/eth/helper/tx.py +++ b/crypto_dev_signer/eth/helper/tx.py @@ -39,6 +39,7 @@ class EthTxExecutor(TxExecutor): logg.error('node could not intepret rlp {}'.format(tx)) if error_object != None: raise NetworkError(error_object) + return tx_hash def reporter(self, tx):