Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/data/groth16.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// 2019 OKIMS
// ported to solidity 0.6
// fixed linter warnings
// added requiere error messages
// added require error messages
//
//
// SPDX-License-Identifier: GPL-3.0
Expand Down
4 changes: 2 additions & 2 deletions src/data/plonk.sol
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ contract PlonkVerifier {

let pAux := mload(0x40) // Point to the next free position
let pIn := pVals
let lastPIn := add(pVals, mul(n, 32)) // Read n elemnts
let lastPIn := add(pVals, mul(n, 32)) // Read n elements
let acc := mload(pIn) // Read the first element
pIn := add(pIn, 32) // Point to the second element
let inv
Expand Down Expand Up @@ -629,4 +629,4 @@ contract PlonkVerifier {
}

}
}
}
2 changes: 1 addition & 1 deletion src/syntax.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ monaco.languages.setMonarchTokensProvider("circom", {

// @ annotations.
// As an example, we emit a debugging log message on these tokens.
// Note: message are supressed during the first load -- change some lines to see them.
// Note: message are suppressed during the first load -- change some lines to see them.
[
/@\s*[a-zA-Z_\$][\w\$]*/,
{ token: "annotation", log: "annotation token: $0" },
Expand Down