Do not set participation on spends to self, introduce minimum spend
This commit is contained in:
parent
0e1851f6f7
commit
1184de1c50
@ -72,7 +72,6 @@ class Test(unittest.TestCase):
|
|||||||
self.assertEqual(960400, a)
|
self.assertEqual(960400, a)
|
||||||
|
|
||||||
|
|
||||||
@unittest.skip('foo')
|
|
||||||
def test_fractional_state(self):
|
def test_fractional_state(self):
|
||||||
with self.assertRaises(eth_tester.exceptions.TransactionFailed):
|
with self.assertRaises(eth_tester.exceptions.TransactionFailed):
|
||||||
self.contract.functions.remainder(2, 1).call();
|
self.contract.functions.remainder(2, 1).call();
|
||||||
|
@ -90,7 +90,6 @@ class Test(unittest.TestCase):
|
|||||||
self.assertEqual(redistribution.hex(), '000000000000000000000000000000000000000000000f4a1000000000000002')
|
self.assertEqual(redistribution.hex(), '000000000000000000000000000000000000000000000f4a1000000000000002')
|
||||||
|
|
||||||
|
|
||||||
@unittest.skip('foo')
|
|
||||||
def test_redistribution_balance_on_zero_participants(self):
|
def test_redistribution_balance_on_zero_participants(self):
|
||||||
supply = 1000000000000
|
supply = 1000000000000
|
||||||
tx_hash = self.contract.functions.mintTo(self.w3.eth.accounts[1], supply).transact()
|
tx_hash = self.contract.functions.mintTo(self.w3.eth.accounts[1], supply).transact()
|
||||||
@ -232,6 +231,10 @@ class Test(unittest.TestCase):
|
|||||||
tx_hash = self.contract.functions.transfer(self.w3.eth.accounts[6], 2000000).transact({'from': self.w3.eth.accounts[1]})
|
tx_hash = self.contract.functions.transfer(self.w3.eth.accounts[6], 2000000).transact({'from': self.w3.eth.accounts[1]})
|
||||||
r = self.w3.eth.getTransactionReceipt(tx_hash)
|
r = self.w3.eth.getTransactionReceipt(tx_hash)
|
||||||
|
|
||||||
|
# No cheating!
|
||||||
|
tx_hash = self.contract.functions.transfer(self.w3.eth.accounts[2], 3000000).transact({'from': self.w3.eth.accounts[2]})
|
||||||
|
r = self.w3.eth.getTransactionReceipt(tx_hash)
|
||||||
|
|
||||||
balance = self.contract.functions.balanceOf(self.w3.eth.accounts[0]).call()
|
balance = self.contract.functions.balanceOf(self.w3.eth.accounts[0]).call()
|
||||||
self.assertEqual(balance, 0)
|
self.assertEqual(balance, 0)
|
||||||
|
|
||||||
@ -248,7 +251,6 @@ class Test(unittest.TestCase):
|
|||||||
r = self.w3.eth.getTransactionReceipt(tx_hash)
|
r = self.w3.eth.getTransactionReceipt(tx_hash)
|
||||||
|
|
||||||
balance = self.contract.functions.balanceOf(self.w3.eth.accounts[0]).call()
|
balance = self.contract.functions.balanceOf(self.w3.eth.accounts[0]).call()
|
||||||
#self.assertEqual(balance, 117600)
|
|
||||||
self.assertEqual(balance, int((z * 0.02 * 0.98) / 2))
|
self.assertEqual(balance, int((z * 0.02 * 0.98) / 2))
|
||||||
|
|
||||||
redistribution = self.contract.functions.redistributions(1).call();
|
redistribution = self.contract.functions.redistributions(1).call();
|
||||||
|
@ -10,6 +10,7 @@ contract RedistributedDemurrageToken {
|
|||||||
string public symbol;
|
string public symbol;
|
||||||
uint256 public decimals;
|
uint256 public decimals;
|
||||||
uint256 public totalSupply;
|
uint256 public totalSupply;
|
||||||
|
uint256 public minimumParticipantSpend;
|
||||||
|
|
||||||
uint256 public periodStart;
|
uint256 public periodStart;
|
||||||
uint256 public periodDuration;
|
uint256 public periodDuration;
|
||||||
@ -43,6 +44,7 @@ contract RedistributedDemurrageToken {
|
|||||||
sinkAddress = _defaultSinkAddress;
|
sinkAddress = _defaultSinkAddress;
|
||||||
bytes32 initialRedistribution = toRedistribution(0, 0, 1);
|
bytes32 initialRedistribution = toRedistribution(0, 0, 1);
|
||||||
redistributions.push(initialRedistribution);
|
redistributions.push(initialRedistribution);
|
||||||
|
minimumParticipantSpend = 10 ** uint256(_decimals);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Given address will be allowed to call the mintTo() function
|
// Given address will be allowed to call the mintTo() function
|
||||||
@ -347,7 +349,7 @@ contract RedistributedDemurrageToken {
|
|||||||
increaseBaseBalance(_to, _value);
|
increaseBaseBalance(_to, _value);
|
||||||
|
|
||||||
period = actualPeriod();
|
period = actualPeriod();
|
||||||
if (_value > 0 && accountPeriod(_from) != period) {
|
if (_value >= minimumParticipantSpend && accountPeriod(_from) != period && _from != _to) {
|
||||||
registerAccountPeriod(_from, period);
|
registerAccountPeriod(_from, period);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
Reference in New Issue
Block a user