aboutsummaryrefslogtreecommitdiff
path: root/src/key.h
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2014-11-05 10:53:59 -0800
committerPieter Wuille <[email protected]>2014-11-10 05:03:24 -0800
commitf4e0aefadcc9f37611a6d5a13e3f7b4b9a37bf76 (patch)
tree2850672169ed04c051d3d70f65b3d29aadfc8027 /src/key.h
parentMerge pull request #5249 (diff)
downloaddiscoin-f4e0aefadcc9f37611a6d5a13e3f7b4b9a37bf76.tar.xz
discoin-f4e0aefadcc9f37611a6d5a13e3f7b4b9a37bf76.zip
Do signature-s negation inside the tests
To avoid the need for libsecp256k1 to expose such functionality.
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 f36e658de..0bb05482c 100644
--- a/src/key.h
+++ b/src/key.h
@@ -122,7 +122,7 @@ public:
CPubKey GetPubKey() const;
//! Create a DER-serialized signature.
- bool Sign(const uint256& hash, std::vector<unsigned char>& vchSig, bool lowS = true) const;
+ bool Sign(const uint256& hash, std::vector<unsigned char>& vchSig) const;
/**
* Create a compact signature (65 bytes), which allows reconstructing the used public key.