Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kanewallmann committed Jun 4, 2024
1 parent 8a86af4 commit a08da96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ contract RocketMerkleDistributorMainnet is RocketBase, RocketMerkleDistributorMa
// Distribute ETH
if (totalAmountETH > 0) {
rocketVault.withdrawEther(totalAmountETH);
// Allow up to 2300 gas to send ETH to the withdrawal address
// Allow up to 10000 gas to send ETH to the withdrawal address
(bool result,) = withdrawalAddress.call{value: totalAmountETH, gas: 10000}("");
if (!result) {
// If the withdrawal address cannot accept the ETH with 10000 gas, add it to their balance to be claimed later at their own expense
Expand Down

0 comments on commit a08da96

Please sign in to comment.