From 823beb7fe5a5a888a373bfe439a1189cf0ec6023 Mon Sep 17 00:00:00 2001 From: elmato Date: Fri, 10 Feb 2017 08:18:23 +0000 Subject: [PATCH] remove call to notify_changed_objects in _push_transaction --- libraries/chain/db_block.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/chain/db_block.cpp b/libraries/chain/db_block.cpp index 63306e66..f7ecd885 100644 --- a/libraries/chain/db_block.cpp +++ b/libraries/chain/db_block.cpp @@ -241,7 +241,7 @@ processed_transaction database::_push_transaction( const signed_transaction& trx auto processed_trx = _apply_transaction( trx ); _pending_tx.push_back(processed_trx); - notify_changed_objects(); + // notify_changed_objects(); // The transaction applied successfully. Merge its changes into the pending block session. temp_session.merge();