2022-12-24 18:49:50 -05:00
|
|
|
// Copyright (c) 2020-2022 The Bitcoin Core developers
|
2020-05-28 02:13:19 -04:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
#include <wallet/context.h>
|
|
|
|
|
|
2021-11-12 11:13:29 -05:00
|
|
|
namespace wallet {
|
2022-05-11 11:02:15 -04:00
|
|
|
WalletContext::WalletContext() = default;
|
|
|
|
|
WalletContext::~WalletContext() = default;
|
2021-11-12 11:13:29 -05:00
|
|
|
} // namespace wallet
|