Make variable naming consistent

This commit is contained in:
Thomas Eizinger 2021-07-06 18:34:09 +10:00
parent 8b59ac26ba
commit 683d565679
No known key found for this signature in database
GPG key ID: 651AC83A6C6C8B96
2 changed files with 9 additions and 9 deletions

View file

@ -37,7 +37,7 @@ pub async fn run_until(
&mut swap.event_loop_handle,
swap.bitcoin_wallet.as_ref(),
swap.monero_wallet.as_ref(),
swap.receive_monero_address,
swap.monero_receive_address,
)
.await?;
@ -56,7 +56,7 @@ async fn next_state(
event_loop_handle: &mut EventLoopHandle,
bitcoin_wallet: &bitcoin::Wallet,
monero_wallet: &monero::Wallet,
receive_monero_address: monero::Address,
monero_receive_address: monero::Address,
) -> Result<BobState> {
tracing::trace!(%state, "Advancing state");
@ -224,10 +224,10 @@ async fn next_state(
// Ensure that the generated wallet is synced so we have a proper balance
monero_wallet.refresh().await?;
// Sweep (transfer all funds) to the given address
let tx_hashes = monero_wallet.sweep_all(receive_monero_address).await?;
let tx_hashes = monero_wallet.sweep_all(monero_receive_address).await?;
for tx_hash in tx_hashes {
tracing::info!(%receive_monero_address, txid=%tx_hash.0, "Sent XMR to");
tracing::info!(%monero_receive_address, txid=%tx_hash.0, "Sent XMR to");
}
BobState::XmrRedeemed {