This commit is contained in:
user 2024-12-24 04:41:35 -05:00
parent 1aa9d030a1
commit 8e79e00c33
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
version = "3"
version = "4"
author = "Caroline Marceano [Albassort]"
description = "A BTC RPC Wrapper for Nim"
license = "MIT"

View file

@ -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)