| 48 | }; |
| 49 | |
| 50 | class MutableTransactionSignatureCreator : public TransactionSignatureCreator { |
| 51 | CTransaction tx; |
| 52 | |
| 53 | public: |
| 54 | MutableTransactionSignatureCreator(const CKeyStore* keystoreIn, const CMutableTransaction* txToIn, unsigned int nInIn, const CAmount& amountIn, int nHashTypeIn) : TransactionSignatureCreator(keystoreIn, &tx, nInIn, amountIn, nHashTypeIn), tx(*txToIn) {} |
| 55 | }; |
| 56 | |
| 57 | /** A signature creator that just produces 72-byte empty signatyres. */ |
| 58 | class DummySignatureCreator : public BaseSignatureCreator { |
no outgoing calls
no test coverage detected