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/queries/get_pending_transactions.hpp"
7 :
8 : namespace shared_model {
9 : namespace interface {
10 :
11 : std::string GetPendingTransactions::toString() const {
12 4 : return detail::PrettyStringBuilder()
13 4 : .init("GetPendingTransactions")
14 4 : .finalize();
15 0 : }
16 :
17 : bool GetPendingTransactions::operator==(const ModelType &rhs) const {
18 0 : return true;
19 : }
20 :
21 : } // namespace interface
22 : } // namespace shared_model
|