Use prod nodes by default instead of test

This commit is contained in:
Franck Royer 2021-05-18 13:26:42 +10:00
parent fb99d6025d
commit 537a2b73a7
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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/', {