diff --git a/test/functional/feature_asset_locks.py b/test/functional/feature_asset_locks.py index a178d8b77c..5fbf5f1d4c 100755 --- a/test/functional/feature_asset_locks.py +++ b/test/functional/feature_asset_locks.py @@ -513,8 +513,7 @@ class AssetLocksTest(DashTestFramework): owner_reward = bt['masternode'][1]['amount'] operator_reward = bt['masternode'][2]['amount'] if len(bt['masternode']) == 3 else 0 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(all_mn_rewards, bt['coinbasevalue'] * 3 // 4) # 75/25 mn/miner reward split 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())