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

Commit

Permalink
deps(dev): bump aegir from 37.12.1 to 38.1.7 (#215)
Browse files Browse the repository at this point in the history
* deps(dev): bump aegir from 37.12.1 to 38.1.7

Bumps [aegir](https://github.com/ipfs/aegir) from 37.12.1 to 38.1.7.
- [Release notes](https://github.com/ipfs/aegir/releases)
- [Changelog](https://github.com/ipfs/aegir/blob/master/CHANGELOG.md)
- [Commits](ipfs/aegir@v37.12.1...v38.1.7)

---
updated-dependencies:
- dependency-name: aegir
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore: fix linting

* chore: fix deps

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: achingbrain <alex@achingbrain.net>
  • Loading branch information
dependabot[bot] and achingbrain authored Mar 10, 2023
1 parent 258b856 commit 8a8b243
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
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

0 comments on commit 8a8b243

Please sign in to comment.