Skip to content

Commit

Permalink
fix: sandbox node mode api prefix (AztecProtocol#3662)
Browse files Browse the repository at this point in the history
Please provide a paragraph or two giving a summary of the change,
including relevant motivation and context.

# Checklist:
Remove the checklist to signal you've completed it. Enable auto-merge if
the PR is ready to merge.
- [ ] If the pull request requires a cryptography review (e.g.
cryptographic algorithm implementations) I have added the 'crypto' tag.
- [ ] I have reviewed my diff in github, line by line and removed
unexpected formatting changes, testing logs, or commented-out code.
- [ ] Every change is related to the PR description.
- [ ] I have
[linked](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue)
this pull request to relevant issues (if any exist).

Co-authored-by: PhilWindle <[email protected]>
  • Loading branch information
spypsy and PhilWindle authored Dec 12, 2023
1 parent 383e123 commit fd6eefe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yarn-project/aztec-sandbox/src/bin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ async function main() {

const port = process.env.AZTEC_NODE_PORT || 8080; // Use standard 8080 when no PXE is running
const nodeRpcServer = createAztecNodeRpcServer(node);
const app = nodeRpcServer.getApp();
const app = nodeRpcServer.getApp(API_PREFIX);

// Add a /status endpoint
const statusRouter = createStatusRouter(API_PREFIX);
Expand Down

0 comments on commit fd6eefe

Please sign in to comment.