private ErrorCode WalletFreeRecordHandler(int storage_handle, int record_handle)
 {
     try
     {
         _storage.FreeRecordAsync(storage_handle, record_handle).GetAwaiter().GetResult();
         return(ErrorCode.Success);
     }
     catch
     {
         return(ErrorCode.WalletStorageError);
     }
 }