Пример #1
0
        public Task <byte[]> GetStorageAtQueryAsync(BigInteger offset, BigInteger length, BlockParameter blockParameter = null)
        {
            var getStorageAtFunction = new GetStorageAtFunction();

            getStorageAtFunction.Offset = offset;
            getStorageAtFunction.Length = length;

            return(ContractHandler.QueryAsync <GetStorageAtFunction, byte[]>(getStorageAtFunction, blockParameter));
        }
Пример #2
0
 public Task <byte[]> GetStorageAtQueryAsync(GetStorageAtFunction getStorageAtFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetStorageAtFunction, byte[]>(getStorageAtFunction, blockParameter));
 }