Merge pull request #236 from oxarbitrage/passdump
remove log of key in witness start
This commit is contained in:
commit
4e9d2af6bf
1 changed files with 2 additions and 1 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue