From a75ac6b548a07768a1b6e8b189c891a853609927 Mon Sep 17 00:00:00 2001 From: Aurora Gaffney Date: Mon, 30 Dec 2024 16:56:30 -0600 Subject: [PATCH] fix: adjust UTxO by Txin query field type We need a concrete type rather than an interface for decoding --- protocol/localstatequery/queries.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/localstatequery/queries.go b/protocol/localstatequery/queries.go index b68a990e..b05c8a50 100644 --- a/protocol/localstatequery/queries.go +++ b/protocol/localstatequery/queries.go @@ -307,7 +307,7 @@ type ShelleyRewardProvenanceQuery struct { type ShelleyUtxoByTxinQuery struct { cbor.StructAsArray Type int - TxIns []ledger.TransactionInput + TxIns []ledger.ShelleyTransactionInput } type ShelleyStakePoolsQuery struct {