Skip to content

Commit

Permalink
fix ternary opr
Browse files Browse the repository at this point in the history
  • Loading branch information
3q-coder committed Feb 14, 2022
1 parent d052e51 commit 995302b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ Check config.js for actual values.

With `salt` = `0x0000000000000000000000000000000000000000000000000000000047941987` addresses must be:

1. `L1Unwrapper` - `0x03AF49dBa3F607BAD4646F0745a6C6473dF9c22d`
2. `TornadoPool` - `0xAEE471D6FD5c6B3f377f45B0a3c705505d172090`
1. `L1Unwrapper` - `0x095f741D37DfB3C798327377467eD40EE21b3B24`
2. `TornadoPool` - `0x85a3C2E4f0FcD4e881e0a3D1078496660C74bb35`

Check addresses with current config:

Expand Down
2 changes: 1 addition & 1 deletion config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = {
hasher: '0x94c92f096437ab9958fc0a37f09348f30389ae79',
gcWeth: '0x6a023ccd1ff6f2045c3309768ead9e68f978f6e1',
gcOmniBridge: '0xf6a78083ca3e2a662d6dd1703c939c8ace2e268d',
l1Unwrapper: '0x03AF49dBa3F607BAD4646F0745a6C6473dF9c22d',
l1Unwrapper: '0x095f741D37DfB3C798327377467eD40EE21b3B24',
govAddress: '0x5efda50f22d34f262c29268506c5fa42cb56a1ce',
l1ChainId: 1,
gcMultisig: '0x1f727de610030a88863d7da45bdea4eb84655b52',
Expand Down
2 changes: 1 addition & 1 deletion contracts/bridge/L1Unwrapper.sol
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ contract L1Unwrapper is WETHOmnibridgeRouter {

AddressHelper.safeSendValue(payable(BytesHelper.bytesToAddress(_data)), _value.sub(l1Fee));

address payable l1FeeTo = (l1FeeReceiver != payable(address(0))) ? l1FeeReceiver : payable(tx.origin);
address payable l1FeeTo = l1FeeReceiver != payable(address(0)) ? l1FeeReceiver : payable(tx.origin);
AddressHelper.safeSendValue(l1FeeTo, l1Fee);
}

Expand Down

0 comments on commit 995302b

Please sign in to comment.