diff options
| author | Pieter Wuille <[email protected]> | 2011-07-05 16:42:32 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2011-07-17 12:07:59 +0200 |
| commit | 03fbd7904903928b0d1c8542a3d597aaf5bdd31b (patch) | |
| tree | 562344a9b651ea1b2cc3f7ffd348377e5bed6090 /src/init.cpp | |
| parent | Merge pull request #418 from EricJ2190/master (diff) | |
| download | discoin-03fbd7904903928b0d1c8542a3d597aaf5bdd31b.tar.xz discoin-03fbd7904903928b0d1c8542a3d597aaf5bdd31b.zip | |
get rid of mapPubKeys
Make CKeyStore's interface work on uint160's instead of pubkeys, so
no separate global mapPubKeys is necessary anymore.
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index fd1d8d3cd..266c99202 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -425,7 +425,6 @@ bool AppInit2(int argc, char* argv[]) printf("mapBlockIndex.size() = %d\n", mapBlockIndex.size()); printf("nBestHeight = %d\n", nBestHeight); printf("setKeyPool.size() = %d\n", pwalletMain->setKeyPool.size()); - printf("mapPubKeys.size() = %d\n", mapPubKeys.size()); printf("mapWallet.size() = %d\n", pwalletMain->mapWallet.size()); printf("mapAddressBook.size() = %d\n", pwalletMain->mapAddressBook.size()); |