Rename API fields (#337)

* Update api-spec

* Update ASP (also domain to drop "pool" completely)

* Update sdk

* Update protos

* Update asp

* Update sdk

* Fixes
This commit is contained in:
Pietralberto Mazza
2024-09-27 15:35:31 +02:00
committed by GitHub
parent f36a747c59
commit 3271776954
25 changed files with 593 additions and 595 deletions

View File

@@ -473,11 +473,11 @@ func rowToPaymentVtxoVw(row queries.PaymentVtxoVw) domain.Vtxo {
Descriptor: row.Descriptor.String,
Amount: uint64(row.Amount.Int64),
},
PoolTx: row.PoolTx.String,
SpentBy: row.SpentBy.String,
Spent: row.Spent.Bool,
Redeemed: row.Redeemed.Bool,
Swept: row.Swept.Bool,
ExpireAt: row.ExpireAt.Int64,
RoundTxid: row.PoolTx.String,
SpentBy: row.SpentBy.String,
Spent: row.Spent.Bool,
Redeemed: row.Redeemed.Bool,
Swept: row.Swept.Bool,
ExpireAt: row.ExpireAt.Int64,
}
}