From a95038fc9d043f0b62675e112ce515e62b582363 Mon Sep 17 00:00:00 2001 From: ardocrat Date: Mon, 31 Jul 2023 16:23:22 +0300 Subject: [PATCH] build: fix comment --- src/wallet/tx.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/tx.rs b/src/wallet/tx.rs index 28af396..5076f5a 100644 --- a/src/wallet/tx.rs +++ b/src/wallet/tx.rs @@ -39,8 +39,8 @@ use uuid::Uuid; use crate::wallet::selection::{build_recipient_output, build_send_tx, select_coins_and_fee}; use crate::wallet::updater::{cancel_tx_and_outputs, refresh_outputs, retrieve_outputs, retrieve_txs}; -/// Static value to increment UUIDs of slates. lazy_static! { + /// Static value to increment UUIDs of slates. static ref SLATE_COUNTER: Mutex = Mutex::new(0); }