Skip to content

Commit

Permalink
chore(core-p2p): add 3.0.0 alpha channel to valid peer versions (#3924)
Browse files Browse the repository at this point in the history
  • Loading branch information
air1one authored Aug 3, 2020
1 parent 4fa24f6 commit f2da0bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions __tests__/unit/core-p2p/network-monitor.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import delay from "delay";
import { cloneDeep } from "lodash";
import path from "path";

jest.setTimeout(60000);

describe("NetworkMonitor", () => {
let networkMonitor: NetworkMonitor;

Expand Down
2 changes: 1 addition & 1 deletion packages/core-p2p/src/defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const defaults = {
/**
* The minimum peer version we expect
*/
minimumVersions: ["^3.0", "^3.0.0-next.0"],
minimumVersions: ["^3.0", "^3.0.0-next.0", "^3.0.0-alpha.0"],
/**
* The number of peers we expect to be available to start a relay
*/
Expand Down

0 comments on commit f2da0bd

Please sign in to comment.