Ejemplo n.º 1
0
        public Task <BigInteger> StakeAmountQueryAsync(string returnValue1, string returnValue2, BlockParameter blockParameter = null)
        {
            var stakeAmountFunction = new StakeAmountFunction();

            stakeAmountFunction.ReturnValue1 = returnValue1;
            stakeAmountFunction.ReturnValue2 = returnValue2;

            return(ContractHandler.QueryAsync <StakeAmountFunction, BigInteger>(stakeAmountFunction, blockParameter));
        }
Ejemplo n.º 2
0
 public Task <BigInteger> StakeAmountQueryAsync(StakeAmountFunction stakeAmountFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <StakeAmountFunction, BigInteger>(stakeAmountFunction, blockParameter));
 }