Skip to content

Commit

Permalink
comment misspell (#1846)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoxianBoy authored Mar 16, 2024
1 parent 2835595 commit c5ac7cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion solidity_examples/rubixi.sol
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ contract Rubixi {
balance += (msg.value * (100 - _fee)) / 100;
collectedFees += (msg.value * _fee) / 100;

//Pays earlier participiants if balance sufficient
//Pays earlier participants if balance sufficient
while (balance > participants[payoutOrder].payout) {
uint payoutToSend = participants[payoutOrder].payout;
participants[payoutOrder].etherAddress.transfer(payoutToSend);
Expand Down
2 changes: 1 addition & 1 deletion tests/testdata/input_contracts/rubixi.sol
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ contract Rubixi {
balance += (msg.value * (100 - _fee)) / 100;
collectedFees += (msg.value * _fee) / 100;

//Pays earlier participiants if balance sufficient
//Pays earlier participants if balance sufficient
while (balance > participants[payoutOrder].payout) {
uint payoutToSend = participants[payoutOrder].payout;
participants[payoutOrder].etherAddress.transfer(payoutToSend);
Expand Down

0 comments on commit c5ac7cf

Please sign in to comment.