Branch: refs/heads/master
Home: https://github.com/btcsuite/btcwallet
Commit: dfe617e05dede7a247801b56b5bac6515c996a05
https://github.com/btcsuite/btcwallet/commit/dfe617e05dede7a247801b56b5bac6515c996a05
Author: Manan Patel <[email protected]>
Date: 2015-04-02 (Thu, 02 Apr 2015)
Changed paths:
M btcwallet.go
R chainntfns.go
M config.go
R createtx.go
R createtx_test.go
R createtx_test_disabled.go
M log.go
R rescan.go
M rpcserver.go
R wallet.go
A wallet/README.md
A wallet/chainntfns.go
A wallet/config.go
A wallet/createtx.go
A wallet/createtx_test.go
A wallet/createtx_test_disabled.go
A wallet/disksync.go
A wallet/doc.go
A wallet/log.go
A wallet/rescan.go
A wallet/wallet.go
M walletsetup.go
Log Message:
-----------
create wallet package
This a refactor of the btcwallet main package to create a new wallet
package.
The main feature of this package is the integration of all the other
wallet components (waddrmgr, txstore, and chain) and the Wallet type is
'runnable', so it will be continuously updating itself against changes
notified by the remote btcd instance.
It also includes several methods which provide access to information
necessary to run a wallet RPC server.