Пример #1
0
        public Task <string> GetSignerAddressFromPoAndSignatureQueryAsync(Po po, byte[] signature, BlockParameter blockParameter = null)
        {
            var getSignerAddressFromPoAndSignatureFunction = new GetSignerAddressFromPoAndSignatureFunction();

            getSignerAddressFromPoAndSignatureFunction.Po        = po;
            getSignerAddressFromPoAndSignatureFunction.Signature = signature;

            return(ContractHandler.QueryAsync <GetSignerAddressFromPoAndSignatureFunction, string>(getSignerAddressFromPoAndSignatureFunction, blockParameter));
        }
Пример #2
0
 public Task <string> GetSignerAddressFromPoAndSignatureQueryAsync(GetSignerAddressFromPoAndSignatureFunction getSignerAddressFromPoAndSignatureFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetSignerAddressFromPoAndSignatureFunction, string>(getSignerAddressFromPoAndSignatureFunction, blockParameter));
 }