cic-internal-integration/apps/cic-eth/tests/unit/eth/test_raw.py

25 lines
543 B
Python

from cic_eth.eth.util import unpack_signed_raw_tx
from cic_eth.eth.task import sign_tx
def test_unpack(
init_rpc,
w3,
):
tx = {
'from': w3.eth.accounts[1],
'to': w3.eth.accounts[0],
'nonce': 0,
'value': 1024,
'gas': 21000,
'gasPrice': 200000000,
'data': '0x',
'chainId': 42,
}
(tx_hash, tx_raw) = sign_tx(tx, 'foo:bar:42')
tx_recovered = unpack_signed_raw_tx(bytes.fromhex(tx_raw[2:]), 42)
assert tx_hash == tx_recovered['hash']