aboutsummaryrefslogtreecommitdiff
path: root/src/key.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2014-09-20 03:13:04 +0200
committerPieter Wuille <pieter.wuille@gmail.com>2014-09-26 21:58:48 +0200
commit8138cbea3c405e142d70b43b6c452e1738de3332 (patch)
tree0e472b02e62a705b34954d2f8a8eff61cf4c21a3 /src/key.h
parent64cfaf891fe539b36f6be37dac6c28a712d70b96 (diff)
downloadbitcoin-8138cbea3c405e142d70b43b6c452e1738de3332.tar.xz
Add automatic script test generation, and actual checksig tests
Diffstat (limited to 'src/key.h')
-rw-r--r--src/key.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/key.h b/src/key.h
index 3863e95cff..f6f6d35d34 100644
--- a/src/key.h
+++ b/src/key.h
@@ -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.