From d496b7cdb0e5bfd4f3b82424dc518758e8a9c9c7 Mon Sep 17 00:00:00 2001 From: oetyng Date: Thu, 27 Apr 2023 18:37:03 +0200 Subject: [PATCH] chore: skip debug of tx in signed spend --- src/signed_spend.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/signed_spend.rs b/src/signed_spend.rs index c31547b..dcd0e97 100644 --- a/src/signed_spend.rs +++ b/src/signed_spend.rs @@ -105,11 +105,12 @@ pub struct Spend { /// DbcId of input Dbc that this SignedSpend is proving to be spent. pub dbc_id: DbcId, /// The transaction that the input Dbc is being spent in. + #[debug(skip)] pub dst_tx: DbcTransaction, /// Reason why this Dbc was spent. pub reason: Hash, - #[debug(skip)] /// The amount of the input Dbc. + #[debug(skip)] pub blinded_amount: BlindedAmount, /// The hash of the transaction that the input Dbc was created in. pub src_tx_hash: Hash,