diff options
author | Samuel Dobson <dobsonsa68@gmail.com> | 2021-12-01 13:10:43 +1300 |
---|---|---|
committer | Samuel Dobson <dobsonsa68@gmail.com> | 2021-12-01 19:07:49 +1300 |
commit | 7b04a064f6e8ee9d93e5a5ad54dab20b769083f2 (patch) | |
tree | c5c70fe5bf437a4f534f64b5a3b3db23680035bb /src/wallet/rpc | |
parent | aef8c7cf82cff24ddd88fab0a3c5fb93de467886 (diff) |
Introduce wallet/rpc/util
Diffstat (limited to 'src/wallet/rpc')
-rw-r--r-- | src/wallet/rpc/util.cpp | 5 | ||||
-rw-r--r-- | src/wallet/rpc/util.h | 10 |
2 files changed, 15 insertions, 0 deletions
diff --git a/src/wallet/rpc/util.cpp b/src/wallet/rpc/util.cpp new file mode 100644 index 0000000000..4fbe0c172c --- /dev/null +++ b/src/wallet/rpc/util.cpp @@ -0,0 +1,5 @@ +// Copyright (c) 2011-2021 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/rpc/util.h> diff --git a/src/wallet/rpc/util.h b/src/wallet/rpc/util.h new file mode 100644 index 0000000000..5987c60d07 --- /dev/null +++ b/src/wallet/rpc/util.h @@ -0,0 +1,10 @@ +// Copyright (c) 2017-2021 The Bitcoin Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#ifndef BITCOIN_WALLET_RPC_UTIL_H +#define BITCOIN_WALLET_RPC_UTIL_H + + + +#endif // BITCOIN_WALLET_RPC_UTIL_H |