Skip to content

Commit

Permalink
Merge pull request #677 from ryanRfox/676-apply_block-validate-tx-sig
Browse files Browse the repository at this point in the history
_apply_block: don't skip trx signature validation
  • Loading branch information
xeroc committed May 15, 2017
2 parents ae4bc61 + a61b360 commit 9b80bbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/chain/db_block.cpp
Expand Up @@ -508,7 +508,7 @@ void database::_apply_block( const signed_block& next_block )
* for transactions when validating broadcast transactions or
* when building a block.
*/
apply_transaction( trx, skip | skip_transaction_signatures );
apply_transaction( trx, skip );
++_current_trx_in_block;
}

Expand Down

0 comments on commit 9b80bbb

Please sign in to comment.