bumpy :3
This commit is contained in:
parent
1aa9d030a1
commit
8e79e00c33
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
version = "3"
|
||||
version = "4"
|
||||
author = "Caroline Marceano [Albassort]"
|
||||
description = "A BTC RPC Wrapper for Nim"
|
||||
license = "MIT"
|
||||
|
|
|
@ -865,7 +865,7 @@ proc send*(a : BTCClient, outputs : Table[string, float],
|
|||
confTarget : Option[uint] = none[uint](), estimateMode : EstimateMode = Unset,
|
||||
feeRate : Option[float] = none[float](), options : JsonNode = newJNull()) : BTCResponse =
|
||||
## see: https://developer.bitcoin.org/reference/rpc/send.html
|
||||
let params = initParams((outputs, confTarget, $estimateMode, feeRate,Options ))
|
||||
let params = initParams((outputs, confTarget, $estimateMode, feeRate,options ))
|
||||
return callAPI(a, "send", params)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue