diff --git a/src/entities/vault_account.rs b/src/entities/vault_account.rs index 80586cf9d141cd5ebec722d1e6e81ce57f8267bb..ec81c6509fe82ddebca8ae09ec8b1c13a7a15abf 100644 --- a/src/entities/vault_account.rs +++ b/src/entities/vault_account.rs @@ -2,6 +2,7 @@ use crate::commands::{cesium, vault}; use crate::runtime_config::AccountId; use crate::utils::GcliError; use anyhow::anyhow; +use log::debug; use sea_orm::entity::prelude::*; use sea_orm::prelude::async_trait::async_trait; use sea_orm::prelude::StringLen; @@ -162,7 +163,12 @@ impl sea_orm::sea_query::ValueType for DbAccountId { impl From<DbAccountId> for Value { fn from(account_id: DbAccountId) -> Self { - Value::String(Some(Box::new(account_id.0.to_string()))) + let account_id_string = account_id.0.to_string(); + debug!( + "DB converting DbAccountId to string:'{}'", + account_id_string + ); + Value::String(Some(Box::new(account_id_string))) } } @@ -782,7 +788,7 @@ where .filter( Condition::any() .add(Column::Parent.eq(current_account.address.clone())) - .add(Column::Parent.eq(format!("\"{}\"",current_account.address.to_string()))), + .add(Column::Parent.eq(format!("\"{}\"", current_account.address))), ) .order_by_asc(Column::Address) .all(db)