From 92e1c4c5317d70e5c9330e87b04d832e65f6b557 Mon Sep 17 00:00:00 2001 From: Jack May Date: Thu, 28 Mar 2019 08:17:49 -0700 Subject: [PATCH] Report which account is in use (#3539) --- runtime/src/accounts.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/src/accounts.rs b/runtime/src/accounts.rs index 1c447e9c17..995bbd954f 100644 --- a/runtime/src/accounts.rs +++ b/runtime/src/accounts.rs @@ -861,6 +861,7 @@ impl Accounts { for k in keys { if locks.contains(k) { error_counters.account_in_use += 1; + error!("Account in use: {:?}", k); return Err(TransactionError::AccountInUse); } }