From 7ad376fc450470c08c9f10807e4a047e94419291 Mon Sep 17 00:00:00 2001 From: benesjan Date: Tue, 26 Sep 2023 17:05:14 +0000 Subject: [PATCH] fixes --- yarn-project/aztec-node/README.md | 2 +- yarn-project/aztec-sandbox/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/yarn-project/aztec-node/README.md b/yarn-project/aztec-node/README.md index f837e427abf5..d3a66d3513fb 100644 --- a/yarn-project/aztec-node/README.md +++ b/yarn-project/aztec-node/README.md @@ -2,7 +2,7 @@ The Aztec Node implements a sequencer node in the network, and is currently meant to be used for local development and testing. The Node is the entrypoint for creating and starting a new Sequencer client with default components (a local P2P client, an in-memory merkle tree database, etc). -The Node also exposes methods that are consumed by the client (see `pxech as querying network info or submitting a transaction. As Aztec evolves beyond local development, these methods will be accessible via a JSON-RPC API or similar. Refer to the `end-to-end` tests for examples on how to initialize an Aztec Node and use it along with an RPC client. +The Node also exposes methods that are consumed by the client (see `pxe`), such as querying network info or submitting a transaction. As Aztec evolves beyond local development, these methods will be accessible via a JSON-RPC API or similar. Refer to the `end-to-end` tests for examples on how to initialize an Aztec Node and use it along with an RPC client. ## Development diff --git a/yarn-project/aztec-sandbox/Dockerfile b/yarn-project/aztec-sandbox/Dockerfile index 1f33dcfad95e..2e22cbc0f779 100644 --- a/yarn-project/aztec-sandbox/Dockerfile +++ b/yarn-project/aztec-sandbox/Dockerfile @@ -6,7 +6,7 @@ ARG COMMIT_TAG="" RUN rm -rf /usr/src/barretenberg/cpp/srs_db/ignition/monomial COPY . . -# Update pxeon if COMMIT_TAG has been used +# Update pxe version if COMMIT_TAG has been used WORKDIR /usr/src/yarn-project/pxe RUN if [[ -n "${COMMIT_TAG}" ]]; then \ jq --arg v ${COMMIT_TAG} '.version = $v' package.json > _temp && mv _temp package.json; \