Skip to content

Commit

Permalink
fix: AZTEC_PORT variable for devnet (#4700)
Browse files Browse the repository at this point in the history
- `AZTEC_NODE_PORT` -> `AZTEC_PORT`
- Log Availability Oracle contract address on node start
  • Loading branch information
spypsy authored Feb 26, 2024
1 parent 18c18fe commit 097a888
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion yarn-project/aztec-node/src/aztec-node/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ export class AztecNodeService implements AztecNode {
`Registry: ${config.l1Contracts.registryAddress.toString()}\n` +
`Inbox: ${config.l1Contracts.inboxAddress.toString()}\n` +
`Outbox: ${config.l1Contracts.outboxAddress.toString()}\n` +
`Contract Emitter: ${config.l1Contracts.contractDeploymentEmitterAddress.toString()}`;
`Contract Emitter: ${config.l1Contracts.contractDeploymentEmitterAddress.toString()}\n` +
`Availability Oracle: ${config.l1Contracts.availabilityOracleAddress.toString()}`;
this.log(message);
}

Expand Down
2 changes: 1 addition & 1 deletion yarn-project/aztec-node/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ resource "aws_ecs_task_definition" "aztec-node" {
"value": "false"
},
{
"name": "AZTEC_NODE_PORT",
"name": "AZTEC_PORT",
"value": "80"
},
{
Expand Down

0 comments on commit 097a888

Please sign in to comment.