forked from DeFiCh/ain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feature_block_reward.py
executable file
·43 lines (35 loc) · 1.55 KB
/
feature_block_reward.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python3
# Copyright (c) 2014-2019 The Bitcoin Core developers
# Copyright (c) DeFi Blockchain Developers
# Distributed under the MIT software license, see the accompanying
# file LICENSE or http://www.opensource.org/licenses/mit-license.php.
"""Test account mining behaviour"""
from test_framework.test_framework import DefiTestFramework
from test_framework.util import (
assert_greater_than,
assert_equal
)
class BlockRewardTest(DefiTestFramework):
def set_test_params(self):
self.num_nodes = 1
self.setup_clean_chain = True
self.extra_args = [['-txnotokens=0', '-amkheight=50', '-eunosheight=100', '-eunosheight=100', '-fortcanningheight=110', '-subsidytest=1']]
def run_test(self):
node = self.nodes[0]
node.generate(120)
newBaseBlockSubsidy = 405.0400
masternodePortion = 0.3333 # 33.33%
mingBaseReward = newBaseBlockSubsidy * masternodePortion
result = node.listaccounthistory("mine", {"depth":0})
assert_equal(result[0]["amounts"][0], f'{mingBaseReward:.8f}@DFI')
account = node.getnewaddress()
node.utxostoaccount({account: "1.1@0"})
node.utxostoaccount({account: "1.2@0"})
node.utxostoaccount({account: "1.3@0"})
node.generate(1)
result = node.listaccounthistory("mine", {"depth":0})
for subResult in result:
if subResult["type"] == "blockReward":
assert_greater_than(subResult["amounts"][0], f'{mingBaseReward:.8f}@DFI')
if __name__ == '__main__':
BlockRewardTest().main ()