Skip to content

Commit

Permalink
Fix a couple fo typos in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
linh2931 committed Apr 15, 2024
1 parent 021213a commit bc2e638
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ namespace eosiosystem {
// A single entry storing information about last proposed finalizers.
// Should avoid using the global singleton pattern as it unnecessarily
// serializes data at construction/desstruction of system_contract,
// even the data is not used.
// even if the data is not used.
struct [[eosio::table("lastpropfins"), eosio::contract("eosio.system")]] last_prop_finalizers_info {
std::vector<finalizer_auth_info> last_proposed_finalizers; // sorted by ascending finalizer key id

Expand Down
2 changes: 1 addition & 1 deletion contracts/eosio.system/src/finalizer_key.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace eosiosystem {
return finalizer_itr;
}

// If finalizers have changed since last round, establishs finalizer policy
// If finalizers have changed since last round, establishes finalizer policy
// from `proposed_finalizers` and calls eosio::set_finalizers host function
// Note: this function may never fail, as it can be called by update_elected_producers,
// and in turn by onblock.
Expand Down

0 comments on commit bc2e638

Please sign in to comment.