diff options
| author | Jorge Timón <[email protected]> | 2016-08-30 22:41:56 +0200 |
|---|---|---|
| committer | Jorge Timón <[email protected]> | 2016-09-01 19:05:07 +0200 |
| commit | cdd79eb70fe163a92531a6f11c72bce6d228dac6 (patch) | |
| tree | 9f615eba78aece231ab3fc37e0252c971b70ac7c /src/bitcoin-tx.cpp | |
| parent | Merge #8611: Reduce default number of blocks to check at startup (diff) | |
| download | discoin-cdd79eb70fe163a92531a6f11c72bce6d228dac6.tar.xz discoin-cdd79eb70fe163a92531a6f11c72bce6d228dac6.zip | |
C++11: s/boost::scoped_ptr/std::unique_ptr/
Diffstat (limited to 'src/bitcoin-tx.cpp')
| -rw-r--r-- | src/bitcoin-tx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoin-tx.cpp b/src/bitcoin-tx.cpp index 5cf9b043e..cb863bda1 100644 --- a/src/bitcoin-tx.cpp +++ b/src/bitcoin-tx.cpp @@ -515,7 +515,7 @@ public: static void MutateTx(CMutableTransaction& tx, const string& command, const string& commandVal) { - boost::scoped_ptr<Secp256k1Init> ecc; + std::unique_ptr<Secp256k1Init> ecc; if (command == "nversion") MutateTxVersion(tx, commandVal); |