From 6438d241cc3e661cc37fa278c8f747a8b8c4073d Mon Sep 17 00:00:00 2001 From: danda Date: Tue, 9 Jul 2024 12:16:54 -0700 Subject: [PATCH] style: rename var: utxo_receiver -> tx_output --- src/models/state/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/models/state/mod.rs b/src/models/state/mod.rs index 76767553..d560fecd 100644 --- a/src/models/state/mod.rs +++ b/src/models/state/mod.rs @@ -559,7 +559,7 @@ impl GlobalState { .wallet_secret .generate_sender_randomness(block_height, change_address.privacy_digest()); - let utxo_receiver = match change_utxo_notify_method { + let tx_output = match change_utxo_notify_method { UtxoNotifyMethod::OnChainPubKey => { let public_announcement = change_address.generate_public_announcement(&utxo, sender_randomness)?; @@ -578,7 +578,7 @@ impl GlobalState { ), }; - tx_outputs.push(utxo_receiver); + tx_outputs.push(tx_output); } // 2. Create the transaction