Skip to content

Commit e313ff6

Browse files
committed
Fix comment
1 parent 0b5126f commit e313ff6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

contracts/src/core/BatcherPaymentService.sol

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,7 @@ contract BatcherPaymentService is
188188
alignedLayerServiceManager.withdraw(amount); // reverts if InsufficientBalance
189189
// money is now in this contract
190190
// we transfer it to the withdraw address
191-
payable(withdrawAddress).transfer(amount); // non-reentrant since .transfer() has low gas limit. Also, Owner is a multisig.
192-
// this.balance is unchanged
191+
payable(withdrawAddress).transfer(amount); // non-reentrant since .transfer() has low gas limit.
193192
}
194193

195194
function pause() public onlyOwner {

0 commit comments

Comments
 (0)