示例#1
0
 public async Task <AuthorizationAPIResult> OpenAccountWithImportAsync(OpenAccountWithImportBlock block)
 {
     if (!CheckServiceStatus())
     {
         return(null);
     }
     return(await _trans.OpenAccountWithImportAsync(block));
 }
示例#2
0
 public async Task <AuthorizationAPIResult> OpenAccountWithImport(OpenAccountWithImportBlock block)
 {
     CheckSyncState();
     return(await _trans.OpenAccountWithImport(block));
 }
示例#3
0
 Task <AuthorizationAPIResult> INodeAPI.OpenAccountWithImport(OpenAccountWithImportBlock block)
 {
     throw new NotImplementedException();
 }
 public async Task <AuthorizationAPIResult> OpenAccountWithImport(OpenAccountWithImportBlock block)
 {
     return(await Pre_PrepareAsync(block).ConfigureAwait(false));
 }
 public async Task <AuthorizationAPIResult> OpenAccountWithImport(OpenAccountWithImportBlock block)
 {
     return(await PostBlock("OpenAccountWithImport", block));
 }