lbcwallet/votingpool
Josh Rickmar d714bf3310 Refactor wallet opening.
Rather than the main package being responsible for opening the address
and transaction managers, the namespaces of these components are
passed as parameters to the wallet.Open function.

Additionally, the address manager Options struct has been split into
two: ScryptOptions which holds the scrypt parameters needed during
passphrase key derivation, and OpenCallbacks which is only passed to
the Open function to allow the caller to provide additional details
during upgrades.

These changes are being done in preparation for a notification server
in the wallet package, with callbacks passed to the Open and Create
functions in waddrmgr and wtxmgr.  Before this could happen, the
wallet package had to be responsible for actually opening the managers
from their namespaces.
2015-05-14 14:33:33 -04:00
..
common_test.go StartWithdrawal returns a previously saved WithdrawalStatus if parameters match 2015-05-14 13:14:01 -05:00
cov_report.sh Implement the deposit side of Voting Pools 2014-11-12 11:41:44 -06:00
db.go StartWithdrawal returns a previously saved WithdrawalStatus if parameters match 2015-05-14 13:14:01 -05:00
db_wb_test.go StartWithdrawal returns a previously saved WithdrawalStatus if parameters match 2015-05-14 13:14:01 -05:00
doc.go Relicense to the btcsuite developers. 2015-05-01 12:20:05 -05:00
error.go StartWithdrawal returns a previously saved WithdrawalStatus if parameters match 2015-05-14 13:14:01 -05:00
error_test.go StartWithdrawal returns a previously saved WithdrawalStatus if parameters match 2015-05-14 13:14:01 -05:00
example_test.go Refactor wallet opening. 2015-05-14 14:33:33 -04:00
factory_test.go Refactor wallet opening. 2015-05-14 14:33:33 -04:00
input_selection.go Change the stack semantics in withdrawal.eligibleInputs 2015-05-14 09:27:19 -05:00
input_selection_wb_test.go Change the stack semantics in withdrawal.eligibleInputs 2015-05-14 09:27:19 -05:00
internal_test.go StartWithdrawal returns a previously saved WithdrawalStatus if parameters match 2015-05-14 13:14:01 -05:00
log.go Relicense to the btcsuite developers. 2015-05-01 12:20:05 -05:00
pool.go Relicense to the btcsuite developers. 2015-05-01 12:20:05 -05:00
pool_test.go Relicense to the btcsuite developers. 2015-05-01 12:20:05 -05:00
pool_wb_test.go Relicense to the btcsuite developers. 2015-05-01 12:20:05 -05:00
README.md Update btcwallet import paths to new location. 2015-01-17 00:25:53 -06:00
test_coverage.txt votingpool: implement Pool.StartWithdrawal() 2015-04-01 15:55:42 +01:00
test_data_test.go Relicense to the btcsuite developers. 2015-05-01 12:20:05 -05:00
withdrawal.go StartWithdrawal returns a previously saved WithdrawalStatus if parameters match 2015-05-14 13:14:01 -05:00
withdrawal_test.go StartWithdrawal returns a previously saved WithdrawalStatus if parameters match 2015-05-14 13:14:01 -05:00
withdrawal_wb_test.go StartWithdrawal returns a previously saved WithdrawalStatus if parameters match 2015-05-14 13:14:01 -05:00

votingpool

[Build Status] (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

[GoDoc] (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.