remove test dependency on anyhow Result type in bank

This commit is contained in:
Sebastian Hugentobler 2022-03-19 10:51:08 +01:00
parent c109f846ed
commit 5eeca85984
Signed by: shu
GPG Key ID: BB32CF3CA052C2F0

View File

@ -1,9 +1,6 @@
use std::collections::{HashMap, HashSet}; use std::collections::{HashMap, HashSet};
use std::sync::{RwLock, RwLockReadGuard}; use std::sync::{RwLock, RwLockReadGuard};
#[cfg(test)]
use anyhow::Result;
use crate::account::{Account, AccountError}; use crate::account::{Account, AccountError};
#[derive(Default)] #[derive(Default)]