public Task <TransactionReceipt> ReplaceListOfEligibleVotersRequestAndWaitForReceiptAsync(BigInteger electionId, List <string> newEligibleVoterList, CancellationTokenSource cancellationToken = null)
        {
            var replaceListOfEligibleVotersFunction = new ReplaceListOfEligibleVotersFunction();

            replaceListOfEligibleVotersFunction.ElectionId           = electionId;
            replaceListOfEligibleVotersFunction.NewEligibleVoterList = newEligibleVoterList;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(replaceListOfEligibleVotersFunction, cancellationToken));
        }
        public Task <string> ReplaceListOfEligibleVotersRequestAsync(BigInteger electionId, List <string> newEligibleVoterList)
        {
            var replaceListOfEligibleVotersFunction = new ReplaceListOfEligibleVotersFunction();

            replaceListOfEligibleVotersFunction.ElectionId           = electionId;
            replaceListOfEligibleVotersFunction.NewEligibleVoterList = newEligibleVoterList;

            return(ContractHandler.SendRequestAsync(replaceListOfEligibleVotersFunction));
        }
 public Task <TransactionReceipt> ReplaceListOfEligibleVotersRequestAndWaitForReceiptAsync(ReplaceListOfEligibleVotersFunction replaceListOfEligibleVotersFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(replaceListOfEligibleVotersFunction, cancellationToken));
 }
 public Task <string> ReplaceListOfEligibleVotersRequestAsync(ReplaceListOfEligibleVotersFunction replaceListOfEligibleVotersFunction)
 {
     return(ContractHandler.SendRequestAsync(replaceListOfEligibleVotersFunction));
 }