diff options
| author | MarcoFalke <[email protected]> | 2018-05-04 17:38:49 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-05-04 17:40:52 -0400 |
| commit | faab55fbb17f2ea5080bf02bc59eeef5ca746f07 (patch) | |
| tree | 6f1c03fd468c4f63ab681af33c47370cb9179b95 /src/primitives | |
| parent | Merge #13163: Make it clear which functions that are intended to be translati... (diff) | |
| download | discoin-faab55fbb17f2ea5080bf02bc59eeef5ca746f07.tar.xz discoin-faab55fbb17f2ea5080bf02bc59eeef5ca746f07.zip | |
Make CMutableTransaction constructor explicit
Silently converting to a CMutableTransaction will drop all caches
and should thus be done explicitly
Diffstat (limited to 'src/primitives')
| -rw-r--r-- | src/primitives/transaction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/primitives/transaction.h b/src/primitives/transaction.h index cd348fdbe..692b55392 100644 --- a/src/primitives/transaction.h +++ b/src/primitives/transaction.h @@ -367,7 +367,7 @@ struct CMutableTransaction uint32_t nLockTime; CMutableTransaction(); - CMutableTransaction(const CTransaction& tx); + explicit CMutableTransaction(const CTransaction& tx); template <typename Stream> inline void Serialize(Stream& s) const { |