Browse Source

wallet: move crypter to wallet

pull/4/head
Cory Fields 9 years ago
parent
commit
a354a59f1f
  1. 4
      src/Makefile.am
  2. 1
      src/keystore.cpp
  3. 0
      src/wallet/crypter.cpp
  4. 0
      src/wallet/crypter.h
  5. 2
      src/wallet/wallet.h

4
src/Makefile.am

@ -88,7 +88,6 @@ BITCOIN_CORE_H = \
compat.h \
compressor.h \
core_io.h \
crypter.h \
wallet/db.h \
eccryptoverify.h \
ecwrapper.h \
@ -140,6 +139,7 @@ BITCOIN_CORE_H = \
utilstrencodings.h \
utiltime.h \
version.h \
wallet/crypter.h \
wallet/walletdb.h \
wallet/wallet.h \
wallet/wallet_ismine.h \
@ -198,8 +198,8 @@ libbitcoin_server_a_SOURCES = \
# when wallet enabled
libbitcoin_wallet_a_CPPFLAGS = $(BITCOIN_INCLUDES)
libbitcoin_wallet_a_SOURCES = \
wallet/crypter.cpp \
wallet/db.cpp \
crypter.cpp \
wallet/rpcdump.cpp \
wallet/rpcwallet.cpp \
wallet/wallet.cpp \

1
src/keystore.cpp

@ -5,7 +5,6 @@
#include "keystore.h"
#include "crypter.h"
#include "key.h"
#include "util.h"

0
src/crypter.cpp → src/wallet/crypter.cpp

0
src/crypter.h → src/wallet/crypter.h

2
src/wallet/wallet.h

@ -9,11 +9,11 @@
#include "amount.h"
#include "primitives/block.h"
#include "primitives/transaction.h"
#include "crypter.h"
#include "key.h"
#include "keystore.h"
#include "main.h"
#include "ui_interface.h"
#include "wallet/crypter.h"
#include "wallet/wallet_ismine.h"
#include "wallet/walletdb.h"

Loading…
Cancel
Save