Rename temporary wallet to blockchain monitoring wallet

This commit is contained in:
Daniel Karzel 2021-02-10 15:06:26 +11:00
parent 1e29433bd2
commit 0a0bce1552

View File

@ -50,7 +50,7 @@ mod serde_peer_id;
#[macro_use] #[macro_use]
extern crate prettytable; extern crate prettytable;
const MONERO_WATCH_ONLY_TEMP_WALLET_NAME: &str = "swap-tool-watch-only-tmp-wallet"; const MONERO_BLOCKCHAIN_MONITORING_WALLET_NAME: &str = "swap-tool-blockchain-monitoring-wallet";
#[tokio::main] #[tokio::main]
async fn main() -> Result<()> { async fn main() -> Result<()> {
@ -332,27 +332,27 @@ async fn init_wallets(
let monero_wallet = monero::Wallet::new(config.monero.wallet_rpc_url.clone(), monero_network); let monero_wallet = monero::Wallet::new(config.monero.wallet_rpc_url.clone(), monero_network);
// Setup the temporary Monero wallet necessary for monitoring the blockchain // Setup the temporary Monero wallet necessary for monitoring the blockchain
let open_tmp_wallet_response = monero_wallet let open_monitoring_wallet_response = monero_wallet
.open_wallet(MONERO_WATCH_ONLY_TEMP_WALLET_NAME) .open_wallet(MONERO_BLOCKCHAIN_MONITORING_WALLET_NAME)
.await; .await;
if open_tmp_wallet_response.is_err() { if open_monitoring_wallet_response.is_err() {
monero_wallet monero_wallet
.create_wallet(MONERO_WATCH_ONLY_TEMP_WALLET_NAME) .create_wallet(MONERO_BLOCKCHAIN_MONITORING_WALLET_NAME)
.await .await
.context(format!( .context(format!(
"Unable to create temporary Monero wallet.\ "Unable to create Monero wallet for blockchain monitoring.\
Please ensure that the monero-wallet-rpc is available at {}", Please ensure that the monero-wallet-rpc is available at {}",
config.monero.wallet_rpc_url config.monero.wallet_rpc_url
))?; ))?;
info!( info!(
"Created temporary Monero wallet {}", "Created Monero wallet for blockchain monitoring with name {}",
MONERO_WATCH_ONLY_TEMP_WALLET_NAME MONERO_BLOCKCHAIN_MONITORING_WALLET_NAME
); );
} else { } else {
info!( info!(
"Opened temporary Monero wallet {}", "Opened Monero wallet for blockchain monitoring with name {}",
MONERO_WATCH_ONLY_TEMP_WALLET_NAME MONERO_BLOCKCHAIN_MONITORING_WALLET_NAME
); );
} }