mirror of
https://github.com/oxen-io/oxen-core.git
synced 2023-12-14 02:22:56 +01:00
Update ip to address param change for integration test
This commit is contained in:
parent
35fa83a4dc
commit
763a6322c7
1 changed files with 2 additions and 2 deletions
|
@ -1865,7 +1865,7 @@ bool t_rpc_command_executor::ban(const std::string &address, time_t seconds)
|
|||
// mlog_set_categories(""), so emit the block message using msg writer
|
||||
// instead of the logging system.
|
||||
#if defined(LOKI_ENABLE_INTEGRATION_TEST_HOOKS)
|
||||
tools::success_msg_writer() << "Host " << ip << " blocked.";
|
||||
tools::success_msg_writer() << "Host " << address << " blocked.";
|
||||
#endif
|
||||
|
||||
return true;
|
||||
|
@ -1902,7 +1902,7 @@ bool t_rpc_command_executor::unban(const std::string &address)
|
|||
}
|
||||
|
||||
#if defined(LOKI_ENABLE_INTEGRATION_TEST_HOOKS)
|
||||
tools::success_msg_writer() << "Host " << ip << " unblocked.";
|
||||
tools::success_msg_writer() << "Host " << address << " unblocked.";
|
||||
#endif
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue