diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-09-02 09:56:16 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-09-02 09:56:33 +0200 |
| commit | 6f939c9080a3bc7d5eb5d50f1b6ed42b0f3f692c (patch) | |
| tree | 0fb472a1003c9733761e4bd6ae5542ccc8290adf /src/bitcoin-tx.cpp | |
| parent | Merge #8272: Make the dummy argument to getaddednodeinfo optional (diff) | |
| parent | C++11: s/boost::scoped_ptr/std::unique_ptr/ (diff) | |
| download | discoin-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.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); |