Drop PendingChange field (#331)

* Drop pending_change

* Fixes

* Polish

* Fallback to psbt string
This commit is contained in:
Pietralberto Mazza
2024-09-26 14:56:20 +02:00
committed by GitHub
parent 2be78b0115
commit b15c0868b2
23 changed files with 522 additions and 454 deletions

View File

@@ -131,12 +131,11 @@ const (
type TxType string
type Transaction struct {
BoardingTxid string
RoundTxid string
RedeemTxid string
Amount uint64
Type TxType
IsPending bool
IsPendingChange bool
CreatedAt time.Time
BoardingTxid string
RoundTxid string
RedeemTxid string
Amount uint64
Type TxType
IsPending bool
CreatedAt time.Time
}