Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix typos #42

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libraries/appbase/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion libraries/chain/database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) )
}
Expand Down