bitcoin-client
bitcoin client library for price ticker and wallet
git clone https://9o.is/git/bitcoin-client.git
commit bde13c6fba33d84cff795e6a30a3ed9c3610e00e parent 759a9ead8c0c0ba36973d1b818e9d5958677e54c Author: Jul <jul@9o.is> Date: Fri, 3 Oct 2014 22:05:50 -0400 getBalance returns correct type Diffstat:
| M | src/main/scala/inc/pyc/bitcoin/wallet/Helper.scala | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/scala/inc/pyc/bitcoin/wallet/Helper.scala b/src/main/scala/inc/pyc/bitcoin/wallet/Helper.scala @@ -46,8 +46,8 @@ trait WalletHelper { (wallet ? SendRawTransaction(signedTransaction)).mapTo[String] - def getBalance: Future[String] = - (wallet ? GetBalance).mapTo[String] + def getBalance: Future[Balance] = + (wallet ? GetBalance).mapTo[Balance] def getNewAddress: Future[String] =