Beispiel #1
0
        public Task <bool> RecordExistsQueryAsync(byte[] node, BlockParameter blockParameter = null)
        {
            var recordExistsFunction = new RecordExistsFunction();

            recordExistsFunction.Node = node;

            return(ContractHandler.QueryAsync <RecordExistsFunction, bool>(recordExistsFunction, blockParameter));
        }
Beispiel #2
0
 public Task <bool> RecordExistsQueryAsync(RecordExistsFunction recordExistsFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <RecordExistsFunction, bool>(recordExistsFunction, blockParameter));
 }