#include "proposal.hpp"

Public Member Functions | |
| Proposal (std::vector< Transaction > txs) | |
| bool | operator== (const Proposal &rhs) const |
| bool | operator!= (const Proposal &rhs) const |
Public Attributes | |
| const std::vector< Transaction > | transactions {} |
| uint64_t | height {} |
| uint64_t | created_time {} |
Proposal is a Model-structure that provides a bunch of transactions emitted by ordering service. Proposal has no signatures and other meta information.
|
inlineexplicit |
| bool iroha::model::Proposal::operator!= | ( | const Proposal & | rhs | ) | const |

| bool iroha::model::Proposal::operator== | ( | const Proposal & | rhs | ) | const |
| uint64_t iroha::model::Proposal::created_time {} |
Time when the proposal have been created
| uint64_t iroha::model::Proposal::height {} |
Height of current proposal. Note: This height must be consistent with your last block height
| const std::vector<Transaction> iroha::model::Proposal::transactions {} |
Bunch of transactions provided by ordering service.