Skip to content

Commit

Permalink
chore: yarn format
Browse files Browse the repository at this point in the history
  • Loading branch information
LHerskind committed Nov 4, 2024
1 parent 68bdbe8 commit 99ab621
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion yarn-project/end-to-end/src/e2e_prover/full.test.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
12 changes: 6 additions & 6 deletions yarn-project/ethereum/src/deploy_l1_contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
5 changes: 4 additions & 1 deletion yarn-project/sequencer-client/src/publisher/l1-publisher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 99ab621

Please sign in to comment.