fix build
This commit is contained in:
parent
b6385e2117
commit
23f485e66f
1 changed files with 5 additions and 5 deletions
|
|
@ -1135,15 +1135,15 @@ namespace graphene { namespace app {
|
||||||
trx.get_required_signatures( _db.get_chain_id(),
|
trx.get_required_signatures( _db.get_chain_id(),
|
||||||
flat_set<public_key_type>(),
|
flat_set<public_key_type>(),
|
||||||
[&]( account_id_type id ){
|
[&]( account_id_type id ){
|
||||||
const auto& auth = &id(_db).active
|
const auto& auth = id(_db).active;
|
||||||
for( const auto& k : auth.get_keys() )
|
for( const auto& k : auth.get_keys() )
|
||||||
result.insert(k)
|
result.insert(k);
|
||||||
return &auth; },
|
return &auth; },
|
||||||
[&]( account_id_type id ){
|
[&]( account_id_type id ){
|
||||||
const auto& auth = &id(_db).owner
|
const auto& auth = id(_db).owner;
|
||||||
for( const auto& k : auth.get_keys() )
|
for( const auto& k : auth.get_keys() )
|
||||||
result.insert(k)
|
result.insert(k);
|
||||||
return &auth; },
|
return &auth;
|
||||||
},
|
},
|
||||||
_db.get_global_properties().parameters.max_authority_depth );
|
_db.get_global_properties().parameters.max_authority_depth );
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue