Forfeit transactions: signing process (#81)

* sign forfeit transactions

* revert txid + move SignVtxos func

* Fix nolint

* Fix

* fix connectorsToInputArgs function

---------

Co-authored-by: altafan <18440657+altafan@users.noreply.github.com>
This commit is contained in:
Louis Singer
2024-01-18 17:17:23 +01:00
committed by GitHub
parent f037622b91
commit 3407fd277a
17 changed files with 439 additions and 258 deletions

View File

@@ -18,7 +18,7 @@ func parseTxs(txs []string) ([]string, error) {
}
for _, tx := range txs {
if _, err := psetv2.NewPsetFromBase64(tx); err != nil {
return nil, fmt.Errorf("invalid tx format")
return nil, fmt.Errorf("invalid tx format %s", err)
}
}
return txs, nil