diff --git a/yarn-project/end-to-end/src/e2e_prover/full.test.ts b/yarn-project/end-to-end/src/e2e_prover/full.test.ts index 13a3d66d4bc..15662b97106 100644 --- a/yarn-project/end-to-end/src/e2e_prover/full.test.ts +++ b/yarn-project/end-to-end/src/e2e_prover/full.test.ts @@ -1,5 +1,5 @@ import { type AztecAddress, EthAddress, retryUntil } from '@aztec/aztec.js'; -import { RollupAbi, RewardDistributorAbi, TestERC20Abi } from '@aztec/l1-artifacts'; +import { RewardDistributorAbi, RollupAbi, TestERC20Abi } from '@aztec/l1-artifacts'; import '@jest/globals'; import { type Chain, type GetContractReturnType, type HttpTransport, type PublicClient, getContract } from 'viem'; diff --git a/yarn-project/ethereum/src/deploy_l1_contracts.ts b/yarn-project/ethereum/src/deploy_l1_contracts.ts index de9f777ea26..8a23efc46ba 100644 --- a/yarn-project/ethereum/src/deploy_l1_contracts.ts +++ b/yarn-project/ethereum/src/deploy_l1_contracts.ts @@ -3,25 +3,25 @@ import { EthAddress } from '@aztec/foundation/eth-address'; import { type Fr } from '@aztec/foundation/fields'; import { type DebugLogger } from '@aztec/foundation/log'; import { - GovernanceAbi, - GovernanceBytecode, + CoinIssuerAbi, + CoinIssuerBytecode, FeeJuicePortalAbi, FeeJuicePortalBytecode, + GovernanceAbi, + GovernanceBytecode, GovernanceProposerAbi, GovernanceProposerBytecode, InboxAbi, InboxBytecode, - CoinIssuerAbi, - CoinIssuerBytecode, OutboxAbi, OutboxBytecode, RegistryAbi, RegistryBytecode, + RewardDistributorAbi, + RewardDistributorBytecode, RollupAbi, RollupBytecode, RollupLinkReferences, - RewardDistributorAbi, - RewardDistributorBytecode, TestERC20Abi, TestERC20Bytecode, TxsDecoderAbi, diff --git a/yarn-project/sequencer-client/src/publisher/l1-publisher.ts b/yarn-project/sequencer-client/src/publisher/l1-publisher.ts index 51f79561e7b..3a1fc87b18e 100644 --- a/yarn-project/sequencer-client/src/publisher/l1-publisher.ts +++ b/yarn-project/sequencer-client/src/publisher/l1-publisher.ts @@ -405,7 +405,10 @@ export class L1Publisher { return false; } - const [slotForLastVote] = await this.governanceProposerContract.read.rounds([this.rollupContract.address, roundNumber]); + const [slotForLastVote] = await this.governanceProposerContract.read.rounds([ + this.rollupContract.address, + roundNumber, + ]); if (slotForLastVote >= slotNumber) { return false;