cic-stack/apps/cic-eth/tests/unit/eth/test_raw.py

25 lines
543 B
Python
Raw Normal View History

2021-02-01 18:12:51 +01:00
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',
2021-03-01 21:15:17 +01:00
'chainId': 42,
2021-02-01 18:12:51 +01:00
}
2021-03-01 21:15:17 +01:00
(tx_hash, tx_raw) = sign_tx(tx, 'foo:bar:42')
2021-02-01 18:12:51 +01:00
2021-03-01 21:15:17 +01:00
tx_recovered = unpack_signed_raw_tx(bytes.fromhex(tx_raw[2:]), 42)
2021-02-01 18:12:51 +01:00
assert tx_hash == tx_recovered['hash']