From f4912661059f20a5f47a6a93dd57559086228912 Mon Sep 17 00:00:00 2001 From: Oleksandr Pravdyvyi Date: Wed, 18 Jun 2025 14:32:30 +0300 Subject: [PATCH] fix: lint fix 2 --- common/src/transaction.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/transaction.rs b/common/src/transaction.rs index efd54f3e..bc25abf3 100644 --- a/common/src/transaction.rs +++ b/common/src/transaction.rs @@ -209,7 +209,7 @@ impl ActionData { .into_iter() .map(|owned_utxo| owned_utxo.into()) .collect(); - format!("Published utxos {:?}", pub_own_utxo) + format!("Published utxos {pub_own_utxo:?}") } } }