diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-08-28 16:05:40 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-08-28 16:06:03 +0200 |
| commit | a5bb6387f751e630c329f34cac2d38bffa8ff9cf (patch) | |
| tree | 865a1bdb0173ba09b87b87b11d320d0118ea294a /src/script | |
| parent | Merge #8573: Set jonasschnellis dns-seeder filter flag (diff) | |
| parent | contrib: Make fix-copyright-headers.py more portable (diff) | |
| download | discoin-a5bb6387f751e630c329f34cac2d38bffa8ff9cf.tar.xz discoin-a5bb6387f751e630c329f34cac2d38bffa8ff9cf.zip | |
Merge #8607: [doc] Fix doxygen off-by-one comments, fix typos
fafe7b3 contrib: Make fix-copyright-headers.py more portable (MarcoFalke)
fa27c0a [doc] Fix typos in comments, doxygen: Fix comment syntax (MarcoFalke)
fabfd5d [qa] pull-tester: Don't mute zmq ImportError (MarcoFalke)
67a5502 init: Fix typo in help message for -whitelistforcerelay (Wladimir J. van der Laan)
Diffstat (limited to 'src/script')
| -rw-r--r-- | src/script/sign.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/sign.h b/src/script/sign.h index 6404b4523..f9aa6fca2 100644 --- a/src/script/sign.h +++ b/src/script/sign.h @@ -51,7 +51,7 @@ public: MutableTransactionSignatureCreator(const CKeyStore* keystoreIn, const CMutableTransaction* txToIn, unsigned int nInIn, const CAmount& amount, int nHashTypeIn) : TransactionSignatureCreator(keystoreIn, &tx, nInIn, amount, nHashTypeIn), tx(*txToIn) {} }; -/** A signature creator that just produces 72-byte empty signatyres. */ +/** A signature creator that just produces 72-byte empty signatures. */ class DummySignatureCreator : public BaseSignatureCreator { public: DummySignatureCreator(const CKeyStore* keystoreIn) : BaseSignatureCreator(keystoreIn) {} |