Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Oct 27, 2023
1 parent 5b53e9d commit febe53b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion yarn-project/end-to-end/src/guides/up_quick_start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ MINT_PRIVATE_TX_HASH=$(echo "$MINT_PRIVATE_OUTPUT" | grep "Transaction hash:" |

aztec-cli add-note \
$ALICE $CONTRACT 5 $MINT_PRIVATE_TX_HASH \
--preimage 1000 $SECRET_HASH
--note 1000 $SECRET_HASH

aztec-cli send redeem_shield \
--args $ALICE 1000 $SECRET \
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/end-to-end/src/shared/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export const cliTestSuite = (
const txHashes = findMultipleInLogs(/Transaction Hash: ([0-9a-f]{64})/i);
const mintPrivateTxHash = txHashes[txHashes.length - 1][1];
await run(
`add-note ${ownerAddress} ${contractAddress} 5 ${mintPrivateTxHash} --preimage ${INITIAL_BALANCE} ${secretHash}`,
`add-note ${ownerAddress} ${contractAddress} 5 ${mintPrivateTxHash} --note ${INITIAL_BALANCE} ${secretHash}`,
);

debug('Redeem tokens.');
Expand Down

0 comments on commit febe53b

Please sign in to comment.