erc20-demurrage-token

ERC20 token with redistributed continual demurrage
Log | Files | Refs | README

commit 4dbbf2c9bc659bfc74990929178b810a98e20e23
parent 008a6ecfba4440b5d88280da0e4993e2e84edbd2
Author: lash <dev@holbrook.no>
Date:   Fri, 10 Feb 2023 10:25:43 +0000

Remove redistribute parameter in unittest constructor

Diffstat:
Mpython/erc20_demurrage_token/unittest/base.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/erc20_demurrage_token/unittest/base.py b/python/erc20_demurrage_token/unittest/base.py @@ -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)