Correct method to property calls

This commit is contained in:
lash
2022-05-09 19:21:45 +00:00
parent 20dfb641ff
commit 23f977482c
2 changed files with 3 additions and 3 deletions

View File

@@ -82,7 +82,7 @@ class TxTestCase(EthTesterCase):
o = transaction(tx_hash_hex)
tx_src = self.rpc.do(o)
tx = Tx(tx_src)
tx_bin = pack(tx.src(), self.chain_spec)
tx_bin = pack(tx.src, self.chain_spec)
def test_tx_pack(self):