diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2014-09-20 03:13:04 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2014-09-26 21:58:48 +0200 |
commit | 8138cbea3c405e142d70b43b6c452e1738de3332 (patch) | |
tree | 0e472b02e62a705b34954d2f8a8eff61cf4c21a3 /src/key.h | |
parent | 64cfaf891fe539b36f6be37dac6c28a712d70b96 (diff) |
Add automatic script test generation, and actual checksig tests
Diffstat (limited to 'src/key.h')
-rw-r--r-- | src/key.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -276,7 +276,7 @@ public: CPubKey GetPubKey() const; // Create a DER-serialized signature. - bool Sign(const uint256& hash, std::vector<unsigned char>& vchSig) const; + bool Sign(const uint256& hash, std::vector<unsigned char>& vchSig, bool lowS = true) const; // Create a compact signature (65 bytes), which allows reconstructing the used public key. // The format is one header byte, followed by two times 32 bytes for the serialized r and s values. |