diff --git a/src/client.rs b/src/client.rs index cc160fae7..6331d5604 100644 --- a/src/client.rs +++ b/src/client.rs @@ -261,6 +261,7 @@ impl Client { let update = state_transition(st, tx)?; debug!("Successfully passed state_transition"); let mut st = state.lock().await; + debug!("Trying to apply the new state"); st.apply(update, secret_keys, notify, wallet).await?; debug!("Successfully passed state.apply"); Ok(())