Skip to content

Commit

Permalink
fix: fixing type error in transaction detail
Browse files Browse the repository at this point in the history
  • Loading branch information
HinsonSIDAN committed Apr 19, 2024
1 parent b7b8a7e commit 543f6ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/transactions.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ type TransactionDetail struct {
Metadata any `json:"metadata"`
Mint []any `json:"mint"`
Outputs []Utxo `json:"outputs"`
Redeemers []Redeemers `json:"redeemers"`
Redeemers Redeemers `json:"redeemers"`
ReferenceInputs []any `json:"reference_inputs"`
ScriptsExecuted []Script `json:"scripts_executed"`
ScriptsSuccesful bool `json:"scripts_succesful"`
ScriptsSuccessful bool `json:"scripts_successful"`
Size int64 `json:"size"`
TxHash string `json:"tx_hash"`
Withdrawals []any `json:"withdrawals"`
Expand Down

0 comments on commit 543f6ff

Please sign in to comment.