Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

deps(dev): bump aegir from 37.12.1 to 38.1.7 #215

Merged
merged 3 commits into from
Mar 10, 2023
Merged
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
8 changes: 3 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
"scripts": {
"clean": "aegir clean",
"lint": "aegir lint",
"dep-check": "aegir dep-check",
"dep-check": "aegir dep-check -i protons",
"build": "aegir build",
"generate": "protons ./src/message/rpc.proto",
"test": "aegir test",
Expand All @@ -159,14 +159,12 @@
"@libp2p/interface-mocks": "^9.0.0",
"@libp2p/interface-pubsub-compliance-tests": "^5.0.0",
"@libp2p/peer-collections": "^3.0.0",
"@libp2p/peer-id": "^2.0.0",
"@libp2p/peer-id-factory": "^2.0.0",
"@multiformats/multiaddr": "^11.0.3",
"aegir": "^37.9.1",
"aegir": "^38.1.7",
"multiformats": "^11.0.0",
"p-wait-for": "^5.0.0",
"protons": "^6.0.0",
"sinon": "^15.0.1",
"wherearewe": "^2.0.1"
"sinon": "^15.0.1"
}
}
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class FloodSub extends PubSubBaseProtocol {
* Process incoming message
* Extends base implementation to check router cache.
*/
async processMessage (from: PeerId, message: Message) {
async processMessage (from: PeerId, message: Message): Promise<void> {
// Check if I've seen the message, if yes, ignore
const seqno = await super.getMsgId(message)
const msgIdStr = toString(seqno, 'base64')
Expand Down