Skip to content

Commit d7093b6

Browse files
authored
Merge branch 'master' into fix-reseal-min-period
2 parents 48029d4 + 9aa7655 commit d7093b6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,35 +32,35 @@ You can create a block by sending a parcel through [JSON-RPC](https://github.com
3232
## Formatting
3333

3434

35-
Make sure you run `rustfmt` before creating a PR to the repo. You need to install the nightly-2018-12-16 version of `rustfmt`.
35+
Make sure you run `rustfmt` before creating a PR to the repo. You need to install the nightly-2018-12-06 version of `rustfmt`.
3636

3737
```
38-
rustup toolchain install nightly-2018-12-16
39-
rustup component add rustfmt-preview --toolchain nightly-2018-12-16
38+
rustup toolchain install nightly-2018-12-06
39+
rustup component add rustfmt-preview --toolchain nightly-2018-12-06
4040
```
4141

4242
To run `rustfmt`,
4343

4444
```
45-
cargo +nightly-2018-12-16 fmt
45+
cargo +nightly-2018-12-06 fmt
4646
```
4747

4848
## Linting
4949

5050
You should run `clippy` also. This is a lint tool for rust. It suggests more efficient/readable code.
5151
You can see [the clippy document](https://rust-lang.github.io/rust-clippy/master/index.html) for more information.
52-
You need to install the nightly-2018-12-16 version of `clippy`.
52+
You need to install the nightly-2018-12-06 version of `clippy`.
5353

5454
### Install
5555
```
56-
rustup toolchain install nightly-2018-12-16
57-
rustup component add clippy-preview --toolchain nightly-2018-12-16
56+
rustup toolchain install nightly-2018-12-06
57+
rustup component add clippy-preview --toolchain nightly-2018-12-06
5858
```
5959

6060
### Run
6161

6262
```
63-
cargo +nightly-2018-12-16 clippy --all
63+
cargo +nightly-2018-12-06 clippy --all
6464
```
6565

6666
## Testing

0 commit comments

Comments
 (0)