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/commands/add_signatory.hpp"
7 :
8 : #include "cryptography/public_key.hpp"
9 :
10 : namespace shared_model {
11 : namespace interface {
12 :
13 : std::string AddSignatory::toString() const {
14 2 : return detail::PrettyStringBuilder()
15 2 : .init("AddSignatory")
16 2 : .append("pubkey", pubkey().toString())
17 2 : .append("account_id", accountId())
18 2 : .finalize();
19 0 : }
20 :
21 : bool AddSignatory::operator==(const ModelType &rhs) const {
22 0 : return pubkey() == rhs.pubkey() and accountId() == rhs.accountId();
23 : }
24 :
25 : } // namespace interface
26 : } // namespace shared_model
|