Skip to content

Commit

Permalink
wallet: move crypter to wallet
Browse files Browse the repository at this point in the history
  • Loading branch information
theuni committed Mar 22, 2015
1 parent f3948a3 commit a354a59
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ BITCOIN_CORE_H = \
compat.h \
compressor.h \
core_io.h \
crypter.h \
wallet/db.h \
eccryptoverify.h \
ecwrapper.h \
Expand Down Expand Up @@ -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 \
Expand Down Expand Up @@ -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 \
Expand Down
1 change: 0 additions & 1 deletion src/keystore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

#include "keystore.h"

#include "crypter.h"
#include "key.h"
#include "util.h"

Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/wallet/wallet.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit a354a59

Please sign in to comment.