Commit ff266e9c authored by Maurelian's avatar Maurelian Committed by Kelvin Fichter

feat(contracts): reduce default gasLimit on eth deposits

parent f1044ca6
---
'@eth-optimism/contracts': patch
---
Reduce default gasLimit on eth deposits to the L1 Standard Bridge
...@@ -74,7 +74,7 @@ contract L1StandardBridge is IL1StandardBridge, CrossDomainEnabled { ...@@ -74,7 +74,7 @@ contract L1StandardBridge is IL1StandardBridge, CrossDomainEnabled {
* default amount is forwarded to L2. * default amount is forwarded to L2.
*/ */
receive() external payable onlyEOA { receive() external payable onlyEOA {
_initiateETHDeposit(msg.sender, msg.sender, 1_300_000, bytes("")); _initiateETHDeposit(msg.sender, msg.sender, 200_000, bytes(""));
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment