Skip to content

Commit

Permalink
chore: show noir tag alongside commit on sandbox startup (#3750)
Browse files Browse the repository at this point in the history
Show Noir tag alongside commit on sandbox startup, so it's easy to know
which version of Noir the sandbox is using.

e.g.
```sh
Setting up Aztec Sandbox v0.16.9 (noir 6ca33a223ccce6a295414a3ce078180e8a22b68c v0.18.0-aztec.5), please stand by...
```
  • Loading branch information
michaelelliot authored Jan 8, 2024
1 parent 506e719 commit 009f66d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yarn-project/aztec-sandbox/src/bin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { init } from '@aztec/foundation/crypto';
import { createStatusRouter } from '@aztec/foundation/json-rpc/server';
import { createDebugLogger } from '@aztec/foundation/log';
import { fileURLToPath } from '@aztec/foundation/url';
import { NoirCommit } from '@aztec/noir-compiler/versions';
import { NoirCommit, NoirTag } from '@aztec/noir-compiler/versions';
import { BootstrapNode, getP2PConfigEnvVars } from '@aztec/p2p';
import { GrumpkinScalar, PXEService, createPXERpcServer } from '@aztec/pxe';

Expand Down Expand Up @@ -122,7 +122,7 @@ async function main() {

// Code path for starting Sandbox
if (mode === SandboxMode.Sandbox) {
logger.info(`Setting up Aztec Sandbox v${version} (noir ${NoirCommit}), please stand by...`);
logger.info(`Setting up Aztec Sandbox v${version} (noir ${NoirCommit} ${NoirTag}), please stand by...`);

const { pxe, node, stop, accounts } = await createAndInitialiseSandbox(deployTestAccounts);

Expand Down

0 comments on commit 009f66d

Please sign in to comment.