Skip to content

Commit 4f908ff

Browse files
committed
fix(liquorice): drop redundant to_checksum use
1 parent 183ae03 commit 4f908ff

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/evm/chains/arbitrum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
short_names=["arb", "arbitrum"],
1313
gas_token="ETH",
1414
poa=False,
15-
liquorice_settlement_address=to_checksum_address(LIQUORICE_SETTLEMENT_ADDRESS),
15+
liquorice_settlement_address=LIQUORICE_SETTLEMENT_ADDRESS,
1616
)
1717
USDT = ERC20Token(
1818
name="Arbitrum USDT",

app/evm/chains/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
short_names=["base"],
1313
gas_token="BASE",
1414
poa=False,
15-
liquorice_settlement_address=to_checksum_address(LIQUORICE_SETTLEMENT_ADDRESS),
15+
liquorice_settlement_address=LIQUORICE_SETTLEMENT_ADDRESS,
1616
)
1717
WETH = ERC20Token(
1818
name="Base WETH",

app/evm/chains/ethereum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
short_names=["eth", "ethereum"],
1313
gas_token="ETH",
1414
poa=False,
15-
liquorice_settlement_address=to_checksum_address(LIQUORICE_SETTLEMENT_ADDRESS),
15+
liquorice_settlement_address=LIQUORICE_SETTLEMENT_ADDRESS,
1616
)
1717
USDT = ERC20Token(
1818
name="Tether USDT",

0 commit comments

Comments
 (0)