Line data Source code
1 : /**
2 : * Copyright Soramitsu Co., Ltd. All Rights Reserved.
3 : * SPDX-License-Identifier: Apache-2.0
4 : */
5 :
6 : #include "multi_sig_transactions/transport/mst_transport_stub.hpp"
7 :
8 : namespace iroha {
9 : namespace network {
10 :
11 : void MstTransportStub::subscribe(
12 239 : std::shared_ptr<MstTransportNotification>) {}
13 :
14 : void MstTransportStub::sendState(const shared_model::interface::Peer &,
15 0 : ConstRefState) {}
16 : } // namespace network
17 : } // namespace iroha
|