From 670ea3726f1846a3c0d7ddbc5d969b3297ec2f7c Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Mon, 6 Jun 2022 04:28:52 -0400 Subject: [PATCH] Correct a warning when building Monero without multisig --- coins/monero/tests/send.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/coins/monero/tests/send.rs b/coins/monero/tests/send.rs index dd95c5b4..4c002d45 100644 --- a/coins/monero/tests/send.rs +++ b/coins/monero/tests/send.rs @@ -1,4 +1,6 @@ -use std::{sync::Mutex, collections::HashMap}; +use std::sync::Mutex; +#[cfg(feature = "multisig")] +use std::collections::HashMap; use lazy_static::lazy_static;