pub trait EscrowCreator {
type EscrowDatabaseType: EscrowDatabase;
// Required method
fn create_escrow_db(
&self,
table_name: &'static str,
) -> Self::EscrowDatabaseType;
}pub trait EscrowCreator {
type EscrowDatabaseType: EscrowDatabase;
// Required method
fn create_escrow_db(
&self,
table_name: &'static str,
) -> Self::EscrowDatabaseType;
}