rename db_schema to walletdb

This commit is contained in:
Sean Darcy 2023-03-24 00:08:09 +00:00
parent 1a6087b2d1
commit 49766634a4
9 changed files with 11 additions and 12 deletions

View File

@ -1,5 +1,5 @@
add_library(wallet3
db_schema.cpp
db/walletdb.cpp
default_daemon_comms.cpp
keyring.cpp
keyring_manager.cpp

View File

@ -1,7 +1,6 @@
#include "db_schema.hpp"
#include "walletdb.hpp"
#include "output.hpp"
#include "block.hpp"
#include "wallet3/block.hpp"
#include <common/hex.h>
#include <common/string_util.h>

View File

@ -3,8 +3,8 @@
#include <SQLiteCpp/SQLiteCpp.h>
#include <sqlitedb/database.hpp>
#include "output.hpp"
#include "walletkeys.hpp"
#include "wallet3/output.hpp"
#include "wallet3/walletkeys.hpp"
#include <optional>

View File

@ -3,7 +3,7 @@
#include "commands.h"
#include "command_parser.h"
#include <wallet3/wallet.hpp>
#include <wallet3/db_schema.hpp>
#include <wallet3/db/walletdb.hpp>
#include <version.h>
#include <cryptonote_core/cryptonote_tx_utils.h>

View File

@ -3,7 +3,7 @@
#include "decoy.hpp"
#include "output_selection/output_selection.hpp"
#include "decoy_selection/decoy_selection.hpp"
#include "db_schema.hpp"
#include "db/walletdb.hpp"
#include <oxenc/base64.h>

View File

@ -1,6 +1,6 @@
#include "wallet.hpp"
#include "db_schema.hpp"
#include "db/walletdb.hpp"
#include "wallet2½.hpp"
#include "block.hpp"
#include "block_tx.hpp"

View File

@ -1,6 +1,6 @@
#include <catch2/catch.hpp>
#include <wallet3/db_schema.hpp>
#include <wallet3/db/walletdb.hpp>
#include <sqlitedb/database.hpp>
TEST_CASE("DB Schema", "[wallet,db]")

View File

@ -3,7 +3,7 @@
#include <wallet3/wallet.hpp>
#include <wallet3/block.hpp>
#include <sqlitedb/database.hpp>
#include <wallet3/db_schema.hpp>
#include <wallet3/db/walletdb.hpp>
#include "mock_daemon_comms.hpp"
namespace wallet

View File

@ -2,7 +2,7 @@
#include <catch2/catch.hpp>
#include <wallet3/wallet.hpp>
#include <wallet3/db_schema.hpp>
#include <wallet3/db/walletdb.hpp>
#include <wallet3/transaction_scanner.hpp>
#include <sqlitedb/database.hpp>