示例#1
0
        public Task <TransactionReceipt> FlushEtherRequestAndWaitForReceiptAsync(List <string> forwarders, CancellationTokenSource cancellationToken = null)
        {
            var flushEtherFunction = new FlushEtherFunction();

            flushEtherFunction.Forwarders = forwarders;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(flushEtherFunction, cancellationToken));
        }
示例#2
0
        public Task <string> FlushEtherRequestAsync(List <string> forwarders)
        {
            var flushEtherFunction = new FlushEtherFunction();

            flushEtherFunction.Forwarders = forwarders;

            return(ContractHandler.SendRequestAsync(flushEtherFunction));
        }
示例#3
0
 public Task <TransactionReceipt> FlushEtherRequestAndWaitForReceiptAsync(FlushEtherFunction flushEtherFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(flushEtherFunction, cancellationToken));
 }
示例#4
0
 public Task <string> FlushEtherRequestAsync(FlushEtherFunction flushEtherFunction)
 {
     return(ContractHandler.SendRequestAsync(flushEtherFunction));
 }