From 287f5ae2cc556c1664d4240928baecadf92627e5 Mon Sep 17 00:00:00 2001 From: kevaundray Date: Mon, 21 Aug 2023 19:51:53 +0100 Subject: [PATCH] fix(bb): fix Typo (#1709) This is a PR to trigger the release-please PR on barretenberg, since chores do not trigger it # 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). --- circuits/cpp/barretenberg/ts/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circuits/cpp/barretenberg/ts/src/main.ts b/circuits/cpp/barretenberg/ts/src/main.ts index 46511e11ea2..e70bedd121e 100755 --- a/circuits/cpp/barretenberg/ts/src/main.ts +++ b/circuits/cpp/barretenberg/ts/src/main.ts @@ -55,7 +55,7 @@ async function init(bytecodePath: string, crsPath: string) { await api.commonInitSlabAllocator(subgroupSize); // Load CRS into wasm global CRS state. - // TODO: Make RawBuffer be default behaviour, and have a specific Vector type for when wanting length prefixed. + // TODO: Make RawBuffer be default behavior, and have a specific Vector type for when wanting length prefixed. await api.srsInitSrs(new RawBuffer(crs.getG1Data()), crs.numPoints, new RawBuffer(crs.getG2Data())); const acirComposer = await api.acirNewAcirComposer(subgroupSize);