Skip to content

Commit 31d62d6

Browse files
committed
clippy + fmt
1 parent 4e97d89 commit 31d62d6

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

src/config.rs

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
use crate::{
2-
constants::{self, HOST_WBTC},
2+
constants,
33
signer::{LocalOrAws, SignerError},
44
};
55
use alloy::{
66
network::{Ethereum, EthereumWallet},
7-
primitives::{Address, address},
7+
primitives::Address,
88
providers::{
99
Identity, ProviderBuilder, RootProvider,
1010
fillers::{
@@ -259,11 +259,7 @@ impl BuilderConfig {
259259
constants::HOST_ORDERS,
260260
constants::HOST_PASSAGE,
261261
constants::HOST_TRANSACTOR,
262-
PredeployTokens::new(
263-
constants::HOST_USDC,
264-
constants::HOST_USDT,
265-
constants::HOST_WBTC,
266-
),
262+
PredeployTokens::new(constants::HOST_USDC, constants::HOST_USDT, constants::HOST_WBTC),
267263
);
268264
let rollup = RollupConfig::new(
269265
self.ru_chain_id,

src/constants.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ pub const ROLLUP_USDC: Address = address!("0x0B8BC5e60EE10957E0d1A0d95598fA63E65
4242
pub const ROLLUP_USDT: Address = address!("0xF34326d3521F1b07d1aa63729cB14A372f8A737C");
4343

4444
/// Address of the WBTC token contract on the rollup.
45-
pub const ROLLUP_WBTC: Address = address!("0xE3d7066115f7d6b65F88Dff86288dB4756a7D733");
45+
pub const ROLLUP_WBTC: Address = address!("0xE3d7066115f7d6b65F88Dff86288dB4756a7D733");

0 commit comments

Comments
 (0)