From 68a7e3e1db53768c99678d79700d037477fdc7ec Mon Sep 17 00:00:00 2001 From: nolash Date: Tue, 2 Feb 2021 16:10:53 +0100 Subject: [PATCH] Add transfer, mint --- python/tests/test_basic.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/tests/test_basic.py b/python/tests/test_basic.py index 941a2d9..a98cdc1 100644 --- a/python/tests/test_basic.py +++ b/python/tests/test_basic.py @@ -141,6 +141,7 @@ class Test(unittest.TestCase): tx_hash = self.contract.functions.transfer(self.w3.eth.accounts[2], 500000).transact({'from': self.w3.eth.accounts[1]}) r = self.w3.eth.getTransactionReceipt(tx_hash) + logg.debug('r {}'.format(r)) self.assertEqual(r.status, 1) balance_alice = self.contract.functions.balanceOf(self.w3.eth.accounts[1]).call()