コード例 #1
0
        public Task <BigInteger> ProposalSnapshotQueryAsync(BigInteger proposalId, BlockParameter blockParameter = null)
        {
            var proposalSnapshotFunction = new ProposalSnapshotFunction();

            proposalSnapshotFunction.ProposalId = proposalId;

            return(ContractHandler.QueryAsync <ProposalSnapshotFunction, BigInteger>(proposalSnapshotFunction, blockParameter));
        }
コード例 #2
0
 public Task <BigInteger> ProposalSnapshotQueryAsync(ProposalSnapshotFunction proposalSnapshotFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <ProposalSnapshotFunction, BigInteger>(proposalSnapshotFunction, blockParameter));
 }