Ensure test client specifies max supply in unittest
This commit is contained in:
parent
5ff686e513
commit
80589e574a
@ -31,7 +31,9 @@ class TestEthCapped(EthTesterCase):
|
|||||||
txf = TxFactory(self.chain_spec, signer=self.signer, nonce_oracle=nonce_oracle)
|
txf = TxFactory(self.chain_spec, signer=self.signer, nonce_oracle=nonce_oracle)
|
||||||
tx = txf.template(self.accounts[0], None, use_nonce=True)
|
tx = txf.template(self.accounts[0], None, use_nonce=True)
|
||||||
|
|
||||||
|
if getattr(self, 'max_supply_value', None) == None:
|
||||||
self.max_supply_value = 1024
|
self.max_supply_value = 1024
|
||||||
|
|
||||||
enc = ABIContractEncoder()
|
enc = ABIContractEncoder()
|
||||||
enc.uint256(self.max_supply_value)
|
enc.uint256(self.max_supply_value)
|
||||||
args = enc.get()
|
args = enc.get()
|
||||||
|
@ -12,7 +12,7 @@ class TestEthCappedInterface:
|
|||||||
self.max_supply_value = 0
|
self.max_supply_value = 0
|
||||||
|
|
||||||
|
|
||||||
def test_supply(self):
|
def test_default_supply(self):
|
||||||
if self.max_supply_value == 0:
|
if self.max_supply_value == 0:
|
||||||
return
|
return
|
||||||
c = EthCapped(self.chain_spec)
|
c = EthCapped(self.chain_spec)
|
||||||
@ -25,7 +25,7 @@ class TestEthCappedInterface:
|
|||||||
if self.set_method == None:
|
if self.set_method == None:
|
||||||
return
|
return
|
||||||
|
|
||||||
self.max_supply_value = 2048
|
self.max_supply_value *= 2
|
||||||
(tx_hash_hex, o) = self.set_method(self.address, self.accounts[0], self.max_supply_value)
|
(tx_hash_hex, o) = self.set_method(self.address, self.accounts[0], self.max_supply_value)
|
||||||
self.rpc.do(o)
|
self.rpc.do(o)
|
||||||
o = receipt(tx_hash_hex)
|
o = receipt(tx_hash_hex)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = cic-contracts
|
name = cic-contracts
|
||||||
version = 0.3.3
|
version = 0.3.4
|
||||||
description = CIC network smart contract interfaces
|
description = CIC network smart contract interfaces
|
||||||
author = Louis Holbrook
|
author = Louis Holbrook
|
||||||
author_email = dev@holbrook.no
|
author_email = dev@holbrook.no
|
||||||
|
Loading…
Reference in New Issue
Block a user