mirror of https://github.com/waku-org/js-waku.git
Use prod nodes by default instead of test
This commit is contained in:
parent
fb99d6025d
commit
537a2b73a7
|
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
### Changed
|
||||
- Testing: Upgrade nim-waku node to v0.3.
|
||||
- **Breaking**: Modify `WakuStore.queryHistory()` to accept one `Object` instead of multiple individual arguments.
|
||||
- `getStatusFleetNodes` return prod nodes by default, instead of test nodes.
|
||||
|
||||
## [0.3.0] - 2021-05-15
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ export enum Environment {
|
|||
}
|
||||
|
||||
export async function getStatusFleetNodes(
|
||||
env: Environment = Environment.Test,
|
||||
env: Environment = Environment.Prod,
|
||||
protocol: Protocol = Protocol.websocket
|
||||
): Promise<string[]> {
|
||||
const res = await axios.get('https://fleets.status.im/', {
|
||||
|
|
Loading…
Reference in New Issue