From f02d6e5a6f0ddfa248b99d59eb8cbf8ecb0a1680 Mon Sep 17 00:00:00 2001 From: snoppy Date: Sun, 7 Apr 2024 09:42:30 +0800 Subject: [PATCH] chore: fix typos --- libraries/appbase/README.md | 2 +- libraries/chain/database.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/appbase/README.md b/libraries/appbase/README.md index 1d6f1bc0e8..badb538564 100755 --- a/libraries/appbase/README.md +++ b/libraries/appbase/README.md @@ -8,7 +8,7 @@ plugins are configured, initialized, started, and shutdown in the proper order. ## Key Features - Dynamically Specify Plugins to Load -- Automaticly Load Dependent Plugins in Order +- Automatically Load Dependent Plugins in Order - Plugins can specify commandline arguments and configuration file options - Program gracefully exits from SIGINT and SIGTERM - Minimal Dependencies (Boost 1.58, c++14) diff --git a/libraries/chain/database.cpp b/libraries/chain/database.cpp index 84fc87091f..de71da7dae 100644 --- a/libraries/chain/database.cpp +++ b/libraries/chain/database.cpp @@ -4964,7 +4964,7 @@ void database::migrate_irreversible_state(uint32_t old_last_irreversible) } FC_CAPTURE_CALL_LOG_AND_RETHROW( [this](){ - elog( "An error occured during migrating an irreversible state. The node will be closed." ); + elog( "An error occurred during migrating an irreversible state. The node will be closed." ); theApp.generate_interrupt_request(); }, (old_last_irreversible) ) }