Skip to content

Commit

Permalink
Fix a typo. Addresses issue Chia-Network#336
Browse files Browse the repository at this point in the history
  • Loading branch information
AmineKhaldi authored and ogabrielides committed Sep 5, 2022
1 parent 1aa668d commit e964be8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -60,7 +60,7 @@ vector<uint8_t> message = {1, 2, 3, 4, 5}; // Message is passed in as a byte ve
G2Element signature = AugSchemeMPL().Sign(sk, message);

// Verify the signature
bool ok = AugSchemeMPL().Verify(pk, message, signature));
bool ok = AugSchemeMPL().Verify(pk, message, signature);
```
## Serializing keys and signatures to bytes
Expand Down

0 comments on commit e964be8

Please sign in to comment.