db_block.cpp: Disable skip_validate #505

This commit is contained in:
theoreticalbts 2016-01-07 15:42:59 -05:00
parent 399e0ed9f9
commit c1612a434e

View file

@ -571,7 +571,7 @@ processed_transaction database::_apply_transaction(const signed_transaction& trx
{ try {
uint32_t skip = get_node_properties().skip_flags;
if( !(skip&skip_validate) )
if( true || !(skip&skip_validate) ) /* issue #505 explains why this skip_flag is disabled */
trx.validate();
auto& trx_idx = get_mutable_index_type<transaction_index>();