Josh Rickmar
Josh Rickmar
Making an issue because I think this is something that could be added to improve the multiline paste bugs. It would be useful to be able to send a multiline...
Doing so subverts some of the protection intended by public data encryption. For example, currently address hash160s are hashed again using sha256 and used as bucket keys. While this prevents...
This separates out application names ("btcwallet" and "btcd") and file paths (the application data directory, wallet database file, etc.) into a non-internal package. There are two benefits from splitting these...
The standard RPC call for importing private keys, importprivkey, has a number of issues. Namely: 1. The command does not allow specifying any hints as to when an address first...
The current transaction creation algorithm uses a custom UTXO selection algorithm. This code is duplicate functionality of the coinset package in btcutil, and should be switched to use coinset instead....
Opening a discussion to remove this extension RPC. I don't find the result format or the intended behavior useful, and creating result objects for it does not scale well. The...
This may already be available but I'm not aware of any existing tools that can perform this task. Otherwise, we need to write our own.
``` ================== WARNING: DATA RACE Write at 0x0000009259b8 by goroutine 9: github.com/btcsuite/btcwallet/waddrmgr.TstRunWithReplacedNewSecretKey() /home/travis/gopath/src/github.com/btcsuite/btcwallet/waddrmgr/internal_test.go:38 +0x79 github.com/btcsuite/btcwallet/waddrmgr_test.testChangePassphrase() /home/travis/gopath/src/github.com/btcsuite/btcwallet/waddrmgr/manager_test.go:994 +0xcd github.com/btcsuite/btcwallet/waddrmgr_test.testManagerAPI() /home/travis/gopath/src/github.com/btcsuite/btcwallet/waddrmgr/manager_test.go:1350 +0x90 github.com/btcsuite/btcwallet/waddrmgr_test.TestManager() /home/travis/gopath/src/github.com/btcsuite/btcwallet/waddrmgr/manager_test.go:1743 +0x8a6 testing.tRunner() /home/travis/.gimme/versions/go1.7.3.linux.amd64/src/testing/testing.go:610 +0xc9 Previous read at 0x0000009259b8...
btcwallet should not only work with btcd, but other bitcoin nodes as well (Bitcoin Core and other alternate full node implementations) and should not require a user to set their...