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_SIGNATURES_RESPONSE_HPP
7 : #define IROHA_SIGNATURES_RESPONSE_HPP
8 :
9 : #include <vector>
10 :
11 : #include "crypto/keypair.hpp"
12 : #include "model/query_response.hpp"
13 :
14 : namespace iroha {
15 : namespace model {
16 :
17 : /**
18 : * Provide response with signatories attached to the account
19 : */
20 : struct SignatoriesResponse : public QueryResponse {
21 : /**
22 : * Vector with all public keys attached to account
23 : */
24 2 : std::vector<pubkey_t> keys{};
25 : };
26 : } // namespace model
27 : } // namespace iroha
28 : #endif // IROHA_SIGNATURES_RESPONSE_HPP
|