File tree 2 files changed +2
-2
lines changed
tests/testdata/input_contracts
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ contract Rubixi {
140
140
balance += (msg .value * (100 - _fee)) / 100 ;
141
141
collectedFees += (msg .value * _fee) / 100 ;
142
142
143
- //Pays earlier participiants if balance sufficient
143
+ //Pays earlier participants if balance sufficient
144
144
while (balance > participants[payoutOrder].payout) {
145
145
uint payoutToSend = participants[payoutOrder].payout;
146
146
participants[payoutOrder].etherAddress.transfer (payoutToSend);
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ contract Rubixi {
140
140
balance += (msg .value * (100 - _fee)) / 100 ;
141
141
collectedFees += (msg .value * _fee) / 100 ;
142
142
143
- //Pays earlier participiants if balance sufficient
143
+ //Pays earlier participants if balance sufficient
144
144
while (balance > participants[payoutOrder].payout) {
145
145
uint payoutToSend = participants[payoutOrder].payout;
146
146
participants[payoutOrder].etherAddress.transfer (payoutToSend);
You can’t perform that action at this time.
0 commit comments