db_block.cpp: Disable skip_validate #505
This commit is contained in:
parent
399e0ed9f9
commit
c1612a434e
1 changed files with 1 additions and 1 deletions
|
|
@ -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>();
|
||||
|
|
|
|||
Loading…
Reference in a new issue