1
0
Fork 0
forked from lthn/blockchain

conn_tool: fixed minor error

This commit is contained in:
sowle 2024-08-13 21:05:48 +02:00
parent f0c7d57c41
commit 0c90262e8a
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC

View file

@ -1222,7 +1222,10 @@ bool handle_pack_file(po::variables_map& vm)
}
if (!command_line::has_arg(vm, arg_target_file))
{
std::cout << "Error: Parameter target_file is not set." << ENDL;
return false;
}
path_target = command_line::get_arg(vm, arg_target_file);
std::ifstream source;