hyperledger/iroha
Iroha - A simple, decentralized ledger http://iroha.tech
storage_result.hpp
Go to the documentation of this file.
1 
6 #ifndef IROHA_STORAGE_RESULT_HPP
7 #define IROHA_STORAGE_RESULT_HPP
8 
9 #include <boost/variant.hpp>
10 
11 namespace iroha::consensus::yac {
12  struct CommitMessage;
13  struct RejectMessage;
14  struct FutureMessage;
15 
19  using Answer = boost::variant<CommitMessage, RejectMessage, FutureMessage>;
20 
21 } // namespace iroha::consensus::yac
22 
23 #endif // IROHA_STORAGE_RESULT_HPP
boost::variant< CommitMessage, RejectMessage, FutureMessage > Answer
Definition: storage_result.hpp:19
Definition: cluster_order.hpp:16