Line data Source code
1 : /**
2 : * Copyright Soramitsu Co., Ltd. All Rights Reserved.
3 : * SPDX-License-Identifier: Apache-2.0
4 : */
5 :
6 : #include "simulator/verified_proposal_creator_common.hpp"
7 :
8 : #include "cryptography/hash.hpp"
9 :
10 : namespace iroha {
11 : namespace simulator {
12 :
13 : std::shared_ptr<validation::VerifiedProposalAndErrors>
14 : getVerifiedProposalUnsafe(const VerifiedProposalCreatorEvent &event) {
15 2168 : return *event.verified_proposal_result;
16 : }
17 :
18 : } // namespace simulator
19 : } // namespace iroha
|