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_ENOUGH_SIGNATURES_COLLECTED_RESPONSE_HPP
7 : #define IROHA_ENOUGH_SIGNATURES_COLLECTED_RESPONSE_HPP
8 :
9 : namespace shared_model {
10 : namespace interface {
11 : /**
12 : * Transaction successfully collected signatures enough to pass the quorum
13 : * and is ready for stateful validation
14 : */
15 : class EnoughSignaturesCollectedResponse
16 : : public AbstractTxResponse<EnoughSignaturesCollectedResponse> {
17 : private:
18 : std::string className() const override {
19 0 : return "EnoughSignaturesCollectedResponse";
20 : }
21 : };
22 : } // namespace interface
23 : } // namespace shared_model
24 :
25 : #endif // IROHA_ENOUGH_SIGNATURES_COLLECTED_RESPONSE_HPP
|