Skip auth check when pushing self-generated blocks
This commit is contained in:
parent
2e85219ca4
commit
12105ab6e5
1 changed files with 1 additions and 1 deletions
|
|
@ -498,7 +498,7 @@ signed_block database::_generate_block(
|
|||
FC_ASSERT( fc::raw::pack_size(pending_block) <= get_global_properties().parameters.maximum_block_size );
|
||||
}
|
||||
|
||||
push_block( pending_block, skip );
|
||||
push_block( pending_block, skip | skip_transaction_signatures ); // skip authority check when pushing self-generated blocks
|
||||
|
||||
return pending_block;
|
||||
} FC_CAPTURE_AND_RETHROW( (witness_id) ) }
|
||||
|
|
|
|||
Loading…
Reference in a new issue