_apply_block: don't skip trx signature validation

This commit is contained in:
Abit 2017-05-10 20:20:18 +02:00 committed by GitHub
parent 8dd663aaf6
commit db9669a264

View file

@ -509,7 +509,7 @@ void database::_apply_block( const signed_block& next_block )
* for transactions when validating broadcast transactions or * for transactions when validating broadcast transactions or
* when building a block. * when building a block.
*/ */
apply_transaction( trx, skip | skip_transaction_signatures ); apply_transaction( trx, skip );
++_current_trx_in_block; ++_current_trx_in_block;
} }