Merge pull request #1976 from ethereum/fix-bls-test-name

Rename `aggregate_na_pubkeys` to `aggregate_na_signatures` and add comments
This commit is contained in:
Danny Ryan 2020-07-21 10:18:23 -06:00 committed by GitHub
commit 4c1a28e547
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -149,7 +149,9 @@ def case03_aggregate():
else:
raise Exception("Should have been INVALID")
yield f'aggregate_na_pubkeys', {
# No signatures to aggregate. Follow IETF BLS spec, return `None` to represent INVALID.
# https://tools.ietf.org/html/draft-irtf-cfrg-bls-signature-02#section-2.8
yield f'aggregate_na_signatures', {
'input': [],
'output': None,
}