You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/bee/working-with-bee/staking.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -498,16 +498,19 @@ You can use the `/health` endpoint to confirm your current Bee version:
498
498
curl -s http://localhost:1633/health | jq
499
499
```
500
500
501
-
To confirm a successful update, check that the `version` number in the results corresponds to the [latest](https://github.com/ethersphere/bee/releases/tag/v2.5.0) Bee release:
501
+
To confirm a successful update, check that the value forthe `"version"` fieldin the results corresponds to the version number of the [latest](https://github.com/ethersphere/bee/releases/latest) Bee release.
502
+
503
+
For example, if the latest version was 2.6.0, it would look like this:
502
504
503
505
```bash
504
506
{
505
507
"status": "ok",
506
-
"version": "2.5.0-5ec231ba",
508
+
"version": "2.6.0-d0aa8b93",
507
509
"apiVersion": "7.3.0"
508
510
}
509
511
```
510
512
513
+
*Make sure to check the [latest](https://github.com/ethersphere/bee/releases/latest) version number yourself, as the versions shown in examples in this guide may not always be up to date with the latest.*
0 commit comments