aboutsummaryrefslogtreecommitdiff
path: root/src/bitcoin-tx.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2016-09-02 09:56:16 +0200
committerWladimir J. van der Laan <[email protected]>2016-09-02 09:56:33 +0200
commit6f939c9080a3bc7d5eb5d50f1b6ed42b0f3f692c (patch)
tree0fb472a1003c9733761e4bd6ae5542ccc8290adf /src/bitcoin-tx.cpp
parentMerge #8272: Make the dummy argument to getaddednodeinfo optional (diff)
parentC++11: s/boost::scoped_ptr/std::unique_ptr/ (diff)
downloaddiscoin-6f939c9080a3bc7d5eb5d50f1b6ed42b0f3f692c.tar.xz
discoin-6f939c9080a3bc7d5eb5d50f1b6ed42b0f3f692c.zip
Merge #8629: C++11: s/boost::scoped_ptr/std::unique_ptr/
cdd79eb C++11: s/boost::scoped_ptr/std::unique_ptr/ (Jorge Timón)
Diffstat (limited to 'src/bitcoin-tx.cpp')
-rw-r--r--src/bitcoin-tx.cpp2
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);