Skip to content

Commit

Permalink
Merge pull request cryptonomex#236 from oxarbitrage/passdump
Browse files Browse the repository at this point in the history
remove log of key in witness start
  • Loading branch information
vikramrajkumar committed Feb 20, 2017
2 parents a6a730b + 0703447 commit 4e9d2af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libraries/plugins/witness/witness.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ void witness_plugin::plugin_initialize(const boost::program_options::variables_m
for (const std::string& key_id_to_wif_pair_string : key_id_to_wif_pair_strings)
{
auto key_id_to_wif_pair = graphene::app::dejsonify<std::pair<chain::public_key_type, std::string> >(key_id_to_wif_pair_string);
idump((key_id_to_wif_pair));
//idump((key_id_to_wif_pair));
ilog("Public Key: ${public}", ("public", key_id_to_wif_pair.first));
fc::optional<fc::ecc::private_key> private_key = graphene::utilities::wif_to_key(key_id_to_wif_pair.second);
if (!private_key)
{
Expand Down

0 comments on commit 4e9d2af

Please sign in to comment.