diff options
author | Pieter Wuille <pieter@wuille.net> | 2020-09-11 14:33:23 -0700 |
---|---|---|
committer | Pieter Wuille <pieter@wuille.net> | 2020-10-06 14:51:30 -0700 |
commit | 107b57df9fa8b2d625d2b342dc77722282a6ae4c (patch) | |
tree | 5b8a87a0ca24bdfdfde27a5836d45c9e6e7838b9 /src/pubkey.h | |
parent | f8c099e2207c90d758e7a659d6a55fa7ccb7ceaa (diff) |
scripted-diff: put ECDSA in name of signature functions
In preparation for adding Schnorr versions of `CheckSig`, `VerifySignature`, and
`ComputeEntry`, give them an ECDSA specific name.
-BEGIN VERIFY SCRIPT-
sed -i 's/CheckSig(/CheckECDSASignature(/g' $(git grep -l CheckSig ./src)
sed -i 's/VerifySignature(/VerifyECDSASignature(/g' $(git grep -l VerifySignature ./src)
sed -i 's/ComputeEntry(/ComputeEntryECDSA(/g' $(git grep -l ComputeEntry ./src)
-END VERIFY SCRIPT-
Diffstat (limited to 'src/pubkey.h')
-rw-r--r-- | src/pubkey.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pubkey.h b/src/pubkey.h index fcbc7e8416..cd1049f66f 100644 --- a/src/pubkey.h +++ b/src/pubkey.h @@ -169,7 +169,7 @@ public: /* * Check syntactic correctness. * - * Note that this is consensus critical as CheckSig() calls it! + * Note that this is consensus critical as CheckECDSASignature() calls it! */ bool IsValid() const { |