Post
Topic
Board Development & Technical Discussion
Merits 2 from 2 users
Re: trouble trying to joinpsbts
by
nc50lc
on 02/02/2020, 04:27:02 UTC
⭐ Merited by Pmalek (1) ,Coding Enthusiast (1)
When I try
> bitcoin-cli combinepsbt ["myPSBT1", "myPSBT1"]
I get
Error: Error parsing JSON:[myPSBT1
Try to enclose them in single quotation marks like this (before [) and ( after ]):
Code:
> bitcoin-cli combinepsbt '["myPSBT1", "myPSBT1"]'