Post
Topic
Board Development & Technical Discussion
Re: trouble trying to joinpsbts
by
FractalEncrypt
on 02/02/2020, 04:33:08 UTC
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"]'

Holy moley that did it! THANK YOU! I was messing with this for a long time.