Add PartiallySignedTransaction.json_serialize() function

This commit is contained in:
Steve Myers
2023-04-04 15:09:37 -05:00
committed by thunderbiscuit
parent 478b12c489
commit fab9ae8ae5
3 changed files with 13 additions and 0 deletions

View File

@@ -369,6 +369,9 @@ class PartiallySignedTransaction(psbtBase64: String) {
* In accordance with BIP 174 this function is commutative i.e., `A.combine(B) == B.combine(A)`
*/
fun combine(other: PartiallySignedTransaction): PartiallySignedTransaction
/** Serialize the PSBT data structure as a String of JSON. */
fun jsonSerialize(): String
}
/**