Skip to content

Commit

Permalink
Update test/functional/feature_asset_locks.py
Browse files Browse the repository at this point in the history
  • Loading branch information
UdjinM6 authored Oct 6, 2023
1 parent dcd3b27 commit cba70cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/feature_asset_locks.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ def run_test(self):
all_mn_rewards = platform_reward + owner_reward + operator_reward
all_mn_rewards += 1 * 0.75
assert_equal(all_mn_rewards, bt['coinbasevalue'] * 0.75) # 75/25 mn/miner reward split
assert_equal(platform_reward, int(all_mn_rewards * 375 // 1000)) # 0.375 platform share
assert_equal(platform_reward, all_mn_rewards * 375 // 1000) # 0.375 platform share
assert_equal(platform_reward, 2555399792)
assert_equal(new_total, self.get_credit_pool_balance())
node.generate(1)
Expand Down

0 comments on commit cba70cb

Please sign in to comment.