From be5e83ff3a3a8cbea4a9dde485c6f9bc17f472cd Mon Sep 17 00:00:00 2001 From: Yeastplume Date: Tue, 22 Jan 2019 13:30:12 +0000 Subject: [PATCH] more useful store_error debug (#2448) --- wallet/src/lmdb_wallet.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallet/src/lmdb_wallet.rs b/wallet/src/lmdb_wallet.rs index b58368377..0ca47f1b3 100644 --- a/wallet/src/lmdb_wallet.rs +++ b/wallet/src/lmdb_wallet.rs @@ -53,7 +53,7 @@ const ACCOUNT_PATH_MAPPING_PREFIX: u8 = 'a' as u8; impl From for Error { fn from(error: store::Error) -> Error { - Error::from(ErrorKind::Backend(format!("{:?}", error))) + Error::from(ErrorKind::Backend(format!("{}", error))) } }