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 ]):
> bitcoin-cli combinepsbt '["myPSBT1", "myPSBT1"]'
Holy moley that did it! THANK YOU! I was messing with this for a long time.