Branch: refs/heads/intwaddrmgr
Home: https://github.com/btcsuite/btcwallet
Commit: 7e74fe6c57ac6d5d2270604670ab2af1681ba0b4
https://github.com/btcsuite/btcwallet/commit/7e74fe6c57ac6d5d2270604670ab2af1681ba0b4
Author: Dave Collins <[email protected]>
Date: 2015-01-31 (Sat, 31 Jan 2015)
Changed paths:
M chain/chain.go
M chainntfns.go
M createtx.go
R keystore/keystore.go
R keystore/keystore_test.go
A legacy/keystore/keystore.go
A legacy/keystore/keystore_test.go
M rescan.go
M rpcserver.go
M wallet.go
Log Message:
-----------
Move keystore to legacy directory.
Commit: 220847decf110d01f9fdd17e35791c5db4543325
https://github.com/btcsuite/btcwallet/commit/220847decf110d01f9fdd17e35791c5db4543325
Author: Dave Collins <[email protected]>
Date: 2015-01-31 (Sat, 31 Jan 2015)
Changed paths:
M btcwallet.go
M chain/chain.go
M chainntfns.go
M config.go
M createtx.go
M createtx_test.go
M rescan.go
M rpcserver.go
M snacl/snacl.go
M waddrmgr/common_test.go
M waddrmgr/manager.go
M waddrmgr/manager_test.go
M wallet.go
A walletsetup.go
Log Message:
-----------
Switch to new waddrmgr package
This commit converts the wallet to use the new secure hierarchical
deterministic wallet address manager package as well as the walletdb
package.
The following is an overview of modified functionality:
- The wallet must now be created before starting the executable
- A new flag --create has been added to create the new wallet using wizard
style question and answer prompts
- Starting the process without an existing wallet will instruct now
display a message to run it with --create
- Providing the --create flag with an existing wallet will simply show an
error and return
Commit: 12bf72f0ddc86523a3720ffa4930a34e2906b5bf
https://github.com/btcsuite/btcwallet/commit/12bf72f0ddc86523a3720ffa4930a34e2906b5bf
Author: Dave Collins <[email protected]>
Date: 2015-01-31 (Sat, 31 Jan 2015)
Changed paths:
M walletsetup.go
Log Message:
-----------
Add conversion from legacy txstore if it exists.
Commit: a47356312f6c3702010b3bc0acfb5273b298b963
https://github.com/btcsuite/btcwallet/commit/a47356312f6c3702010b3bc0acfb5273b298b963
Author: Javed Khan <[email protected]>
Date: 2015-01-31 (Sat, 31 Jan 2015)
Changed paths:
M walletsetup.go
Log Message:
-----------
Turn echo off when reading passwords
Commit: 51e3d5f3b194d8105b37685838da0f3fa6358683
https://github.com/btcsuite/btcwallet/commit/51e3d5f3b194d8105b37685838da0f3fa6358683
Author: Dave Collins <[email protected]>
Date: 2015-01-31 (Sat, 31 Jan 2015)
Changed paths:
M snacl/snacl.go
Log Message:
-----------
Return the memory after scrypt to the OS.
Previously a runtime.GC was being invoked which forced it to release the
memory as far as the garbage collector is concerned, but the memory was
not released back to the OS immediatley. This modification allows the
memory to be released immedately since it won't be needed again until the
next wallet unlock.
Compare:
https://github.com/btcsuite/btcwallet/compare/7e74fe6c57ac^...51e3d5f3b194