From 7eea8252a4e7316dba411439330155f5eb70cbb0 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Thu, 5 Jun 2014 20:58:47 -0500 Subject: [PATCH] Add the new example to README.md and doc.go. --- README.md | 10 +++++++--- doc.go | 4 ++++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a422e012..b7ecaab7 100644 --- a/README.md +++ b/README.md @@ -21,9 +21,13 @@ implement and the API is not stable yet. * [API Reference](http://godoc.org/github.com/conformal/btcrpcclient) * [btcd Websockets Example](https://github.com/conformal/btcrpcclient/blob/master/examples/btcdwebsockets) - Connects to a btcd RPC server using TLS-secured websockets, - registers for block connected and block disconnected notifications, and gets - the current block count + Connects to a btcd RPC server using TLS-secured websockets, registers for + block connected and block disconnected notifications, and gets the current + block count +* [btcwallet Websockets Example](https://github.com/conformal/btcrpcclient/blob/master/examples/btcwalletwebsockets) + Connects to a btcwallet RPC server using TLS-secured websockets, registers for + notifications about changes to account balances, and gets a list of unspent + transaction outputs (utxos) the wallet can sign * [Bitcoin Core HTTP POST Example](https://github.com/conformal/btcrpcclient/blob/master/examples/bitcoincorehttp) Connects to a bitcoin core RPC server using HTTP POST mode with TLS disabled and gets the current block count diff --git a/doc.go b/doc.go index 3917a7db..b2604723 100644 --- a/doc.go +++ b/doc.go @@ -170,5 +170,9 @@ The following full-blown client examples are in the examples directory: Connects to a btcd RPC server using TLS-secured websockets, registers for block connected and block disconnected notifications, and gets the current block count + - btcwalletwebsockets + Connects to a btcwallet RPC server using TLS-secured websockets, registers + for notifications about changes to account balances, and gets a list of + unspent transaction outputs (utxos) the wallet can sign */ package btcrpcclient