From 324276003b7d3d19ed2dab5f7ad0696a0475d2e6 Mon Sep 17 00:00:00 2001 From: teenager-ETH Date: Tue, 24 Dec 2024 00:05:57 +0100 Subject: [PATCH 1/3] fix typo README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f01c64905..a0b097f10 100644 --- a/README.md +++ b/README.md @@ -249,7 +249,7 @@ make -j8 build-nim - some programs in the _tests_ subdirectory do a replay of blockchain database dumps when compiled and run locally. The dumps are found in [this](https://github.com/status-im/nimbus-eth1-blobs) module which - need to be cloned as _nimbus-eth1-blobs_ parellel to the _nimbus-eth1_ + need to be cloned as _nimbus-eth1-blobs_ parallel to the _nimbus-eth1_ file system root. #### Git submodule workflow From a3075c21a4210dcbb3f290b25cdb12d936a94016 Mon Sep 17 00:00:00 2001 From: teenager-ETH Date: Tue, 24 Dec 2024 00:06:37 +0100 Subject: [PATCH 2/3] typo fix portal_protocol.nim --- fluffy/network/wire/portal_protocol.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluffy/network/wire/portal_protocol.nim b/fluffy/network/wire/portal_protocol.nim index ccade317c..46b0da347 100644 --- a/fluffy/network/wire/portal_protocol.nim +++ b/fluffy/network/wire/portal_protocol.nim @@ -833,7 +833,7 @@ proc getContentKeys(o: OfferRequest): ContentKeysList = func getMaxOfferedContentKeys*(protocolIdLen: uint32, maxKeySize: uint32): int = ## Calculates how many ContentKeys will fit in one offer message which - ## will be small enouch to fit into discv5 limit. + ## will be small enough to fit into discv5 limit. ## This is neccesarry as contentKeysLimit (64) is sometimes to big, and even ## half of this can be too much to fit into discv5 limits. From 0ad655398a58b8e8b0fbdead298e30ce4cf0d9e6 Mon Sep 17 00:00:00 2001 From: teenager-ETH Date: Tue, 24 Dec 2024 00:07:31 +0100 Subject: [PATCH 3/3] typo fix beacon_db.nim --- fluffy/network/beacon/beacon_db.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluffy/network/beacon/beacon_db.nim b/fluffy/network/beacon/beacon_db.nim index c70c7a1a5..3f68e37d0 100644 --- a/fluffy/network/beacon/beacon_db.nim +++ b/fluffy/network/beacon/beacon_db.nim @@ -534,7 +534,7 @@ proc createStoreHandler*(db: BeaconDb): DbStoreHandler = return # Lot of assumptions here: - # - that updates are continious i.e there is no period gaps + # - that updates are continuous i.e there is no period gaps # - that updates start from startPeriod of content key var period = contentKey.lightClientUpdateKey.startPeriod for update in updates.asSeq():