diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-10-18 21:11:22 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-10-18 21:16:08 +0200 |
commit | 744d2652dda0251bad7c1d8e3bbb468c2fe27510 (patch) | |
tree | e5ec5ff5dd0238954af403425b94a4e084369244 /src/miner.h | |
parent | e10af96cf450494fdb893b71540e709ed311b871 (diff) | |
parent | 9fce0629b437441cb09c14055ee810b8ee6b7978 (diff) |
Merge #8223: [c++11] Use std::unique_ptr for block creation.
9fce062 [c++11] Use std::unique_ptr for block creation. (Daniel Kraft)
Diffstat (limited to 'src/miner.h')
-rw-r--r-- | src/miner.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/miner.h b/src/miner.h index 11753f5e43..bad443b82a 100644 --- a/src/miner.h +++ b/src/miner.h @@ -164,7 +164,7 @@ private: public: BlockAssembler(const CChainParams& chainparams); /** Construct a new block template with coinbase to scriptPubKeyIn */ - CBlockTemplate* CreateNewBlock(const CScript& scriptPubKeyIn); + std::unique_ptr<CBlockTemplate> CreateNewBlock(const CScript& scriptPubKeyIn); private: // utility functions |