Line data Source code
1 : /**
2 : * Copyright Soramitsu Co., Ltd. All Rights Reserved.
3 : * SPDX-License-Identifier: Apache-2.0
4 : */
5 :
6 : #include "interfaces/query_responses/block_error_response.hpp"
7 :
8 : #include "utils/string_builder.hpp"
9 :
10 : namespace shared_model {
11 : namespace interface {
12 :
13 : std::string BlockErrorResponse::toString() const {
14 0 : return detail::PrettyStringBuilder()
15 0 : .init("BlockErrorResponse")
16 0 : .append(message())
17 0 : .finalize();
18 0 : }
19 :
20 : bool BlockErrorResponse::operator==(const ModelType &rhs) const {
21 0 : return message() == rhs.message();
22 : }
23 : } // namespace interface
24 : } // namespace shared_model
|