Closed zpxp closed 2 years ago
How to know if a TxBuilder is fully signed using the lastest version of this library? In the legacy version we had tx.isFullySigned(): bool Is there an equivalent in the latest version?
TxBuilder
tx.isFullySigned(): bool
Found TxVerifier which does what I need. bsv.TxVerifier.verify(txb.tx,txb.uTxOutMap)
TxVerifier
bsv.TxVerifier.verify(txb.tx,txb.uTxOutMap)
How to know if a
TxBuilder
is fully signed using the lastest version of this library? In the legacy version we hadtx.isFullySigned(): bool
Is there an equivalent in the latest version?