move wallet code to separate file
authorPieter Wuille <pieter.wuille@gmail.com>
Wed, 1 Jun 2011 16:27:05 +0000 (18:27 +0200)
committerPieter Wuille <pieter.wuille@gmail.com>
Wed, 15 Jun 2011 09:05:55 +0000 (11:05 +0200)
commite89b9f6a2abaa120ff0fc3cea9ae364e8cbd25e4
treeef0789aeadd8ff3e53c2705ea9153f0e612f689c
parent19ea44208f7c2cf335c654126deb81406036e328
move wallet code to separate file

This introduces two new source files, keystore.cpp and wallet.cpp with
corresponding headers. Code is moved from main and db, in a preparation
for a follow-up commit which introduces the classes CWallet and CKeyStore.
16 files changed:
src/db.cpp
src/db.h
src/headers.h
src/keystore.cpp [new file with mode: 0644]
src/keystore.h [new file with mode: 0644]
src/main.cpp
src/main.h
src/makefile.mingw
src/makefile.osx
src/makefile.unix
src/noui.h
src/script.h
src/ui.cpp
src/ui.h
src/wallet.cpp [new file with mode: 0644]
src/wallet.h [new file with mode: 0644]