public Task <List <BigInteger> > EpochsPoolGotRewardForQueryAsync(string returnValue1, BlockParameter blockParameter = null)
        {
            var epochsPoolGotRewardForFunction = new EpochsPoolGotRewardForFunction();

            epochsPoolGotRewardForFunction.ReturnValue1 = returnValue1;

            return(ContractHandler.QueryAsync <EpochsPoolGotRewardForFunction, List <BigInteger> >(epochsPoolGotRewardForFunction, blockParameter));
        }
Exemplo n.º 2
0
        public Task <List <BigInteger> > EpochsPoolGotRewardForQueryAsync(string miningAddress, BlockParameter blockParameter = null)
        {
            var epochsPoolGotRewardForFunction = new EpochsPoolGotRewardForFunction();

            epochsPoolGotRewardForFunction.MiningAddress = miningAddress;

            return(ContractHandler.QueryAsync <EpochsPoolGotRewardForFunction, List <BigInteger> >(epochsPoolGotRewardForFunction, blockParameter));
        }
 public Task <List <BigInteger> > EpochsPoolGotRewardForQueryAsync(EpochsPoolGotRewardForFunction epochsPoolGotRewardForFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <EpochsPoolGotRewardForFunction, List <BigInteger> >(epochsPoolGotRewardForFunction, blockParameter));
 }