Exemplo n.º 1
0
        public Task <byte[]> AddrQueryAsync(byte[] node, BigInteger coinType, BlockParameter blockParameter = null)
        {
            var addrFunction = new AddrFunction2();

            addrFunction.Node     = node;
            addrFunction.CoinType = coinType;

            return(ContractHandler.QueryAsync <AddrFunction2, byte[]>(addrFunction, blockParameter));
        }
Exemplo n.º 2
0
 public Task <byte[]> AddrQueryAsync(AddrFunction2 addrFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <AddrFunction2, byte[]>(addrFunction, blockParameter));
 }