Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: minor annoyances #2115

Merged
merged 1 commit into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,9 @@ AppendOnlySnapshot check_nullifier_tree_non_membership_and_insert_to_tree(DummyB
if (!(is_less_than_nullifier && is_next_greater_than)) {
if (low_nullifier_preimage.next_index != 0 && low_nullifier_preimage.next_value != 0) {
builder.do_assert(false,
format("Nullifier is not in the correct range. \n ",
format("Nullifier (",
nullifier,
") is not in the correct range. \n ",
"is_less_than_nullifier ",
is_less_than_nullifier,
"\n is_next_greater_than ",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export class SoloBlockBuilder implements BlockBuilder {
protected vks: VerificationKeys,
protected simulator: RollupSimulator,
protected prover: RollupProver,
protected debug = createDebugLogger('aztec:sequencer'),
protected debug = createDebugLogger('aztec:sequencer:solo-block-builder'),
) {}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export class L1Publisher implements L2BlockReceiver {
private interruptableSleep = new InterruptableSleep();
private sleepTimeMs: number;
private interrupted = false;
private log = createDebugLogger('aztec:sequencer');
private log = createDebugLogger('aztec:sequencer:publisher');

constructor(private txSender: L1PublisherTxSender, config?: PublisherConfig) {
this.sleepTimeMs = config?.l1BlockPublishRetryIntervalMS ?? 60_000;
Expand Down