Skip to content

Commit

Permalink
fix fund-account gas oracles
Browse files Browse the repository at this point in the history
  • Loading branch information
dghelm committed Sep 7, 2024
1 parent 2e04b06 commit 9b35177
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/helper/fund-accounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,11 +164,11 @@ export default class HelperFundAccounts extends Command {
const l1Addresses: Record<string, string> = {
'L1_COMMIT_SENDER': config.accounts.L1_COMMIT_SENDER_ADDR,
'L1_FINALIZE_SENDER': config.accounts.L1_FINALIZE_SENDER_ADDR,
'L1_GAS_ORACLE_SENDER': config.accounts.L1_GAS_ORACLE_SENDER_ADDR,
'L2_GAS_ORACLE_SENDER': config.accounts.L2_GAS_ORACLE_SENDER_ADDR
}

const l2Addresses: Record<string, string> = {
'L2_GAS_ORACLE_SENDER': config.accounts.L2_GAS_ORACLE_SENDER_ADDR
'L1_GAS_ORACLE_SENDER': config.accounts.L1_GAS_ORACLE_SENDER_ADDR,
}

if (flags.account) {
Expand Down

0 comments on commit 9b35177

Please sign in to comment.