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_UNKNOWN_TX_RESPONSE_HPP
7 : #define IROHA_UNKNOWN_TX_RESPONSE_HPP
8 :
9 : #include "interfaces/transaction_responses/abstract_tx_response.hpp"
10 :
11 : namespace shared_model {
12 : namespace interface {
13 : /**
14 : * Transaction not found
15 : */
16 : class NotReceivedTxResponse
17 : : public AbstractTxResponse<NotReceivedTxResponse> {
18 : private:
19 : std::string className() const override {
20 0 : return "NotReceivedTxResponse";
21 : }
22 : };
23 :
24 : } // namespace interface
25 : } // namespace shared_model
26 : #endif // IROHA_UNKNOWN_TX_RESPONSE_HPP
|