We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b5126f commit e313ff6Copy full SHA for e313ff6
contracts/src/core/BatcherPaymentService.sol
@@ -188,8 +188,7 @@ contract BatcherPaymentService is
188
alignedLayerServiceManager.withdraw(amount); // reverts if InsufficientBalance
189
// money is now in this contract
190
// 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
+ payable(withdrawAddress).transfer(amount); // non-reentrant since .transfer() has low gas limit.
193
}
194
195
function pause() public onlyOwner {
0 commit comments