You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// For all our account info's we need to find the credentials and keys in the access structure and build them into a pending row to be inserted. Once we have reached the batch size for pending rows, they will get inserted together
82
82
for account_info in account_infos.into_iter(){
83
83
let address:Vec<u8> = account_info.account_address.0.clone().to_vec();
84
-
let access_structure:AccountAccessStructure = (&account_info).into();
84
+
let access_structure:AccountAccessStructure = v2::Upward::from(&account_info)
0 commit comments