Skip to content

Commit

Permalink
Correct compiler error on moved file references.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmienk committed Nov 1, 2019
1 parent 1c9424c commit cd26ee7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/dispatch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
#include <boost/filesystem.hpp>
#include <boost/program_options.hpp>
#include <bitcoin/explorer/command.hpp>
#include <bitcoin/explorer/commands/send-tx-node.hpp>
#include <bitcoin/explorer/commands/send-tx-p2p.hpp>
#include <bitcoin/explorer/commands/broadcast-tx.hpp>
#include <bitcoin/explorer/commands/put-tx.hpp>
#include <bitcoin/explorer/define.hpp>
#include <bitcoin/explorer/display.hpp>
#include <bitcoin/explorer/generated.hpp>
Expand Down Expand Up @@ -127,8 +127,8 @@ console_result dispatch_command(int argc, const char* argv[],
}

// TODO: move log determination into generated command static.
if ((target == commands::send_tx_node::symbol()) ||
(target == commands::send_tx_p2p::symbol()))
if ((target == commands::put_tx::symbol()) ||
(target == commands::broadcast_tx::symbol()))
{
auto debug_file = command->get_network_debug_file_setting().string();
auto error_file = command->get_network_error_file_setting().string();
Expand Down

0 comments on commit cd26ee7

Please sign in to comment.