mirror of
https://github.com/dashpay/dash.git
synced 2024-12-29 05:49:11 +01:00
11 lines
397 B
C++
11 lines
397 B
C++
// Copyright (c) 2020 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <wallet/context.h>
|
|
|
|
WalletContext::WalletContext(const std::unique_ptr<interfaces::CoinJoin::Loader>& coinjoin_loader) :
|
|
m_coinjoin_loader(coinjoin_loader)
|
|
{}
|
|
WalletContext::~WalletContext() {}
|