hyperledger/iroha
Iroha - A simple, decentralized ledger http://iroha.tech
verified_proposal_creator.hpp
Go to the documentation of this file.
1 
6 #ifndef IROHA_VERIFIED_PROPOSAL_CREATOR_HPP
7 #define IROHA_VERIFIED_PROPOSAL_CREATOR_HPP
8 
10 
11 namespace iroha {
12  namespace network {
13  struct OrderingEvent;
14  }
15  namespace simulator {
16 
21  public:
25  virtual VerifiedProposalCreatorEvent processProposal(
26  network::OrderingEvent const &event) = 0;
27 
28  virtual ~VerifiedProposalCreator() = default;
29  };
30  } // namespace simulator
31 } // namespace iroha
32 #endif // IROHA_VERIFIED_PROPOSAL_CREATOR_HPP
Definition: verified_proposal_creator.hpp:20
Definition: block_query.hpp:15
Definition: ordering_gate_common.hpp:27
Definition: verified_proposal_creator_common.hpp:21