diff options
| author | Pieter Wuille <[email protected]> | 2013-10-19 18:42:14 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2013-10-26 14:51:47 +0200 |
| commit | 722fa283d04dfe9c70418e69535a08eea06b4377 (patch) | |
| tree | c917f101a743cebd52c17ac777d47ed44c35c1fa /src/rpcdump.cpp | |
| parent | Use boost signals for callbacks from main to wallet (diff) | |
| download | discoin-722fa283d04dfe9c70418e69535a08eea06b4377.tar.xz discoin-722fa283d04dfe9c70418e69535a08eea06b4377.zip | |
Break dependency of init on wallet.
This required some code movement (what was CWalletTx::AcceptToMemoryPool
doing in main?), and adding a few explicit includes that used to be
implicit through init.h.
Diffstat (limited to 'src/rpcdump.cpp')
| -rw-r--r-- | src/rpcdump.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpcdump.cpp b/src/rpcdump.cpp index 3589b4590..a5f7a542d 100644 --- a/src/rpcdump.cpp +++ b/src/rpcdump.cpp @@ -6,6 +6,7 @@ #include <fstream> #include "init.h" // for pwalletMain +#include "wallet.h" #include "bitcoinrpc.h" #include "ui_interface.h" #include "base58.h" |