Line data Source code
1 : /**
2 : * Copyright Soramitsu Co., Ltd. All Rights Reserved.
3 : * SPDX-License-Identifier: Apache-2.0
4 : */
5 :
6 : #ifndef IROHA_COMMITTED_TX_RESPONSE_HPP
7 : #define IROHA_COMMITTED_TX_RESPONSE_HPP
8 :
9 : #include "interfaces/transaction_responses/abstract_tx_response.hpp"
10 :
11 : namespace shared_model {
12 : namespace interface {
13 : /**
14 : * Tx pipeline succeeded, tx is committed in ledger
15 : */
16 : class CommittedTxResponse : public AbstractTxResponse<CommittedTxResponse> {
17 : private:
18 : std::string className() const override {
19 667 : return "CommittedTxResponse";
20 : }
21 : };
22 :
23 : } // namespace interface
24 : } // namespace shared_model
25 : #endif // IROHA_COMMITTED_TX_RESPONSE_HPP
|