Skip to content

Commit 009f66d

Browse files
chore: show noir tag alongside commit on sandbox startup (AztecProtocol#3750)
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... ```
1 parent 506e719 commit 009f66d

File tree

1 file changed

+2
-2
lines changed
  • yarn-project/aztec-sandbox/src/bin

1 file changed

+2
-2
lines changed

yarn-project/aztec-sandbox/src/bin/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { init } from '@aztec/foundation/crypto';
77
import { createStatusRouter } from '@aztec/foundation/json-rpc/server';
88
import { createDebugLogger } from '@aztec/foundation/log';
99
import { fileURLToPath } from '@aztec/foundation/url';
10-
import { NoirCommit } from '@aztec/noir-compiler/versions';
10+
import { NoirCommit, NoirTag } from '@aztec/noir-compiler/versions';
1111
import { BootstrapNode, getP2PConfigEnvVars } from '@aztec/p2p';
1212
import { GrumpkinScalar, PXEService, createPXERpcServer } from '@aztec/pxe';
1313

@@ -122,7 +122,7 @@ async function main() {
122122

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

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

0 commit comments

Comments
 (0)