commit 68a7e3e1db53768c99678d79700d037477fdc7ec
parent 1a2b3bab370a01197aa043961c501b267df9e3c3
Author: nolash <dev@holbrook.no>
Date: Tue, 2 Feb 2021 16:10:53 +0100
Add transfer, mint
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git 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()