コード例 #1
0
        public Task <BigInteger> GetUintQueryAsync(byte[] name, string key, BlockParameter blockParameter = null)
        {
            var getUintFunction = new GetUintFunction();

            getUintFunction.Name = name;
            getUintFunction.Key  = key;

            return(ContractHandler.QueryAsync <GetUintFunction, BigInteger>(getUintFunction, blockParameter));
        }
コード例 #2
0
 public Task <BigInteger> GetUintQueryAsync(GetUintFunction getUintFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetUintFunction, BigInteger>(getUintFunction, blockParameter));
 }