Remove redistribute parameter in unittest constructor

This commit is contained in:
lash 2023-02-10 10:25:43 +00:00
parent 008a6ecfba
commit 4dbbf2c9bc
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class TestTokenDeploy:
def deploy(self, rpc, deployer_address, interface, supply_cap=0):
tx_hash = None
o = None
(tx_hash, o) = interface.constructor(deployer_address, self.settings, redistribute=False, cap=0)
(tx_hash, o) = interface.constructor(deployer_address, self.settings, cap=0)
r = rpc.do(o)
o = receipt(tx_hash)