Skip to content

Commit 85ef411

Browse files
committed
Fix stale toolchain docs
We have docs that use an env var `BITCOIN_MSRV` that no longer exists. Point readers towards `RUSTUP_TOOLCHAIN`. (Note that we still use `TOOLCHAIN` in the script but it is being phased out, `RUSTUP_TOOLCHAIN` works today.)
1 parent 4642ccb commit 85ef411

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ PR authors may also find it useful to run the following script locally in order
128128
to check that each of the commits within the PR satisfies the requirements
129129
above, before submitting the PR to review:
130130
```shell script
131-
BITCOIN_MSRV=1.29.0 ./contrib/test.sh
131+
RUSTUP_TOOLCHAIN=1.41.1 ./contrib/test.sh
132132
```
133-
Please replace the value in `BITCOIN_MSRV=1.29.0` with the current MSRV from
133+
Please replace the value in `RUSTUP_TOOLCHAIN=1.41.1` with the current MSRV from
134134
[README.md].
135135

136136
NB: Please keep in mind that the script above replaces `Cargo.lock` file, which

0 commit comments

Comments
 (0)