diff --git a/README.md b/README.md index 8a96e4a..bf5626d 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,8 @@ Check config.js for actual values. With `salt` = `0x0000000000000000000000000000000000000000000000000000000047941987` addresses must be: -1. `L1Unwrapper` - `0xfEADF5e7e453c664D903d1b1945c524c4328e1c5` -2. `TornadoPool` - `0x6a1c06C4Af066a35291117611fd0418411c0dbD0` +1. `L1Unwrapper` - `0x03AF49dBa3F607BAD4646F0745a6C6473dF9c22d` +2. `TornadoPool` - `0xAEE471D6FD5c6B3f377f45B0a3c705505d172090` Check addresses with current config: diff --git a/config.js b/config.js index 075eb6b..66450dc 100644 --- a/config.js +++ b/config.js @@ -19,7 +19,7 @@ module.exports = { hasher: '0x94c92f096437ab9958fc0a37f09348f30389ae79', gcWeth: '0x6a023ccd1ff6f2045c3309768ead9e68f978f6e1', gcOmniBridge: '0xf6a78083ca3e2a662d6dd1703c939c8ace2e268d', - l1Unwrapper: '0xfEADF5e7e453c664D903d1b1945c524c4328e1c5', + l1Unwrapper: '0x03AF49dBa3F607BAD4646F0745a6C6473dF9c22d', govAddress: '0x5efda50f22d34f262c29268506c5fa42cb56a1ce', l1ChainId: 1, gcMultisig: '0x1f727de610030a88863d7da45bdea4eb84655b52', diff --git a/contracts/bridge/L1Unwrapper.sol b/contracts/bridge/L1Unwrapper.sol index 77c894f..2f0c127 100644 --- a/contracts/bridge/L1Unwrapper.sol +++ b/contracts/bridge/L1Unwrapper.sol @@ -96,12 +96,7 @@ contract L1Unwrapper is WETHOmnibridgeRouter { AddressHelper.safeSendValue(payable(BytesHelper.bytesToAddress(_data)), _value.sub(l1Fee)); - address payable l1FeeTo; - if (l1FeeReceiver != payable(address(0))) { - l1FeeTo = l1FeeReceiver; - } else { - l1FeeTo = payable(tx.origin); - } + address payable l1FeeTo = (l1FeeReceiver != payable(address(0))) ? l1FeeReceiver : payable(tx.origin); AddressHelper.safeSendValue(l1FeeTo, l1Fee); }