From 509a48aff5da57b717ed00e01b1dc8dd26bbb00c Mon Sep 17 00:00:00 2001 From: Daniela Brozzoni Date: Fri, 27 Aug 2021 15:49:55 +0200 Subject: [PATCH] Spend in get_spend_tx and set_spend_tx messages... ...serialized in base64 instead of hex. Closes #94 --- messages.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/messages.md b/messages.md index 8d287b2..9968ee6 100644 --- a/messages.md +++ b/messages.md @@ -323,7 +323,7 @@ set of Unvault. "method": "set_spend_tx", "params": { "deposit_outpoint": ["txid:vout", "txid:vout"], - "spend_tx": "hex of Bitcoin-serialized fully-signed spend transaction" + "spend_tx": "base64 of Bitcoin-serialized fully-signed spend transaction" } } ``` @@ -366,7 +366,7 @@ return `null`. ```json { "result": { - "spend_tx": "hex of Bitcoin-serialized spend tx" + "spend_tx": "base64 of Bitcoin-serialized spend tx" } } ```