Skip to content

Commit

Permalink
Cut out legacy wdumps from signing_keys_collector::collect_signing_keys
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucius committed Jan 16, 2025
1 parent 74eb544 commit bc842dc
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions libraries/protocol/transaction_util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -394,28 +394,24 @@ void signing_keys_collector::collect_signing_keys( flat_set< public_key_type >*
for( const auto& name : req_active_approvals )
{
auto v_approving_keys = get_active( name ).get_keys();
wdump( ( v_approving_keys ) );
keys->insert( v_approving_keys.begin(), v_approving_keys.end() );
}
for( const auto& name : req_owner_approvals )
{
auto v_approving_keys = get_owner( name ).get_keys();
wdump( ( v_approving_keys ) );
keys->insert( v_approving_keys.begin(), v_approving_keys.end() );
}

for( const auto& name : req_posting_approvals )
{
auto v_approving_keys = get_posting( name ).get_keys();
wdump( ( v_approving_keys ) );
keys->insert( v_approving_keys.begin(), v_approving_keys.end() );
}

for( const authority& a : other_auths )
{
for( const auto& kv : a.key_auths )
{
wdump( ( kv.first ) );
keys->insert( kv.first );
}
}
Expand Down

0 comments on commit bc842dc

Please sign in to comment.