hyperledger/iroha
Iroha - A simple, decentralized ledger http://iroha.tech
ordering_service.hpp
Go to the documentation of this file.
1 
6 #ifndef IROHA_ORDERINGSERVICE_H
7 #define IROHA_ORDERINGSERVICE_H
8 
10 
11 namespace iroha {
12  namespace network {
14  public:
19  virtual void publishProposal(
20  std::unique_ptr<shared_model::interface::Proposal> proposal) = 0;
21  };
22  } // namespace network
23 } // namespace iroha
24 #endif // IROHA_ORDERINGSERVICE_H
virtual void publishProposal(std::unique_ptr< shared_model::interface::Proposal > proposal)=0
Definition: block_query.hpp:15
Definition: ordering_service_transport.hpp:19
Definition: ordering_service.hpp:13