Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/release/0.6' into elmato/merge-b…
Browse files Browse the repository at this point in the history
…lockchain-plugin-shutdown-on-error-into-0.7
  • Loading branch information
elmato committed Dec 14, 2023
2 parents ff5e012 + 94d7678 commit 1660874
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/blockchain_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ class blockchain_plugin_impl : std::enable_shared_from_this<blockchain_plugin_im
block_count=0;
}
} catch (const mdbx::exception& ex) {
SILK_CRIT << "CALLBACK ERR1" << std::string(ex.what());
sys::error("evm_blocks_subscription: mdbx::exception, " + std::string(ex.what()));
} catch (const std::exception& ex) {
SILK_CRIT << "CALLBACK ERR2" << std::string(ex.what());
sys::error("evm_blocks_subscription: std::exception:" + std::string(ex.what()));
} catch (...) {
SILK_CRIT << "CALLBACK ERR3";
sys::error("evm_blocks_subscription: unknown exception");
}
}
);
Expand Down

0 comments on commit 1660874

Please sign in to comment.