Skip to content

Commit 5ebbf66

Browse files
authored
update nightly-2022-05-15 (#792)
1 parent 55b7bb2 commit 5ebbf66

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
uses: actions-rs/toolchain@v1
4040
with:
4141
profile: minimal
42-
toolchain: nightly-2022-02-19
42+
toolchain: nightly-2022-05-15
4343
components: rustfmt
4444
target: wasm32-unknown-unknown
4545
default: true

.github/workflows/master.yml.disabled

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions-rs/toolchain@v1
1717
with:
1818
profile: minimal
19-
toolchain: nightly-2022-02-19
19+
toolchain: nightly-2022-05-15
2020
override: true
2121
default: true
2222
- name: Install cargo-unleash

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions-rs/toolchain@v1
3434
with:
3535
profile: minimal
36-
toolchain: nightly-2022-02-19
36+
toolchain: nightly-2022-05-15
3737
components: rustfmt
3838
target: wasm32-unknown-unknown
3939
override: true

bencher/src/bencher.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use codec::{Decode, Encode};
22
use sp_std::prelude::Vec;
33

4-
#[derive(Encode, Decode, Default, Clone, PartialEq, Debug)]
4+
#[derive(Encode, Decode, Default, Clone, PartialEq, Eq, Debug)]
55
pub struct BenchResult {
66
pub method: Vec<u8>,
77
pub elapses: Vec<u128>,

utilities/src/offchain_worker/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/// Error which may occur while executing the off-chain code.
2-
#[derive(PartialEq)]
2+
#[derive(PartialEq, Eq)]
33
pub enum OffchainErr {
44
OffchainStore,
55
SubmitTransaction,

0 commit comments

Comments
 (0)