private ErrorCode WalletDeleteHandler(string name, string config, string credentials_json)
 {
     try
     {
         _storage.DeleteAsync(name, config, credentials_json).GetAwaiter().GetResult();
         return(ErrorCode.Success);
     }
     catch
     {
         return(ErrorCode.WalletStorageError);
     }
 }