mirror of
https://github.com/dogecoin/dogecoin.git
synced 2026-03-01 16:46:23 +00:00
Throughout the codebase we use std::shared_ptr, except for some instances in the miner code, where we use boost::shared_ptr for sharing a wallet address with the miner and rpc across threads. This patch removes all usage of boost::shared_ptr to instead use std::shared_ptr, to reduce exposure to multiple shared pointer implementations.