fcccae3d1a
This changes the wallet.Open function signature to remove the database namespace parameters. This is done so that the wallet package itself is responsible for the location and opening of these namespaces from the database, rather than requiring the caller to open these ahead of time. A new wallet.Create function has also been added. This function initializes a new wallet in an empty database, using the same namespaces as wallet.Open will eventually use. This relieves the caller from needing to manage wallet database namespaces explicitly. Fixes #397. |
||
---|---|---|
.. | ||
common_test.go | ||
cov_report.sh | ||
db.go | ||
db_wb_test.go | ||
doc.go | ||
error.go | ||
error_test.go | ||
example_test.go | ||
factory_test.go | ||
input_selection.go | ||
input_selection_wb_test.go | ||
internal_test.go | ||
log.go | ||
pool.go | ||
pool_test.go | ||
pool_wb_test.go | ||
README.md | ||
test_coverage.txt | ||
test_data_test.go | ||
withdrawal.go | ||
withdrawal_test.go | ||
withdrawal_wb_test.go |
votingpool
[] (https://travis-ci.org/btcsuite/btcwallet)
Package votingpool provides voting pool functionality for btcwallet as described here: Voting Pools.
A suite of tests is provided to ensure proper functionality. See
test_coverage.txt
for the gocov coverage report. Alternatively, if you are
running a POSIX OS, you can run the cov_report.sh
script for a real-time
report. Package votingpool is licensed under the liberal ISC license.
Note that this is still a work in progress.
Feature Overview
- Create/Load pools
- Create series
- Replace series
- Create deposit addresses
- Comprehensive test coverage
Documentation
[] (http://godoc.org/github.com/btcsuite/btcwallet/votingpool)
Full go doc
style documentation for the project can be viewed online without
installing this package by using the GoDoc site here:
http://godoc.org/github.com/btcsuite/btcwallet/votingpool
You can also view the documentation locally once the package is installed with
the godoc
tool by running godoc -http=":6060"
and pointing your browser to
http://localhost:6060/pkg/github.com/btcsuite/btcwallet/votingpool
Package votingpool is licensed under the copyfree ISC License.