Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
0xCooki committed Nov 1, 2024
1 parent 9313085 commit d6ceb75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chapter1/bls-multisig/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function getOperationPoint(Operation memory op) public view returns (BLS.G2Point
}
```

Secondly, the contract method `verifyAndExecute` contains core logic for signature verification, let's walk through it.
The contract's second method, `verifyAndExecute`, contains core logic for signature verification, let's walk through it.

We start with aggregating the signers public keys into a single point on G1. This is done by simply invoking G1ADD precompile with all public keys. After this step, we will have a single point on G1 which represents the aggregated public key of all signers. We require signers to be sorted to ensure that all signers are unique and valid.

Expand Down

0 comments on commit d6ceb75

Please sign in to comment.