Skip to content

Commit 7d917ba

Browse files
committed
Update comments
1 parent cabf1d6 commit 7d917ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/eosio.system/src/producer_pay.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,10 +383,10 @@ namespace eosiosystem {
383383
index++;
384384

385385
if (index <= 21) {
386-
// Applying tiered BP pay multiplier for active BPs (rank 1st until 21st) [1.2, 1.18, ... , 0.82, 0.8]
386+
// Applying tiered BP pay multiplier for active BPs (rank 1st until 21st) [1.2, 1.18, ... , 0.82, 0.8] multiplied by 2
387387
pay_amount = (shareValue * int64_t(2) * ((122-2*index)/100.0));
388388
} else if (index >= 22 && index <= MAX_PRODUCERS) {
389-
// Applying tiered BP pay multiplier for standby BPs (rank 22nd until 42nd) [1.2, 1.18, ... , 0.82, 0.8]
389+
// Applying tiered BP pay multiplier for standby BPs (rank 22nd until 42nd) [1.2, 1.18, ... , 0.82, 0.8] multiplied by 1
390390
pay_amount = shareValue * ((164-2*index)/100.0);
391391
} else
392392
break;

0 commit comments

Comments
 (0)