Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:

- name: setup
run: |
rustup install nightly --profile default
rustup +nightly target add wasm32-unknown-unknown
rustup install nightly-2020-10-01 --profile default
rustup target add wasm32-unknown-unknown --toolchain nightly-2020-10-01

- name: fmt
run: cargo +nightly fmt --all -- --check
run: cargo +nightly-2020-10-01 fmt --all -- --check

- name: build
run: cargo build --workspace --verbose
run: cargo +nightly-2020-10-01 build --workspace --verbose

- name: test
run: cargo test --workspace --verbose -- --test-threads=1
run: cargo +nightly-2020-10-01 test --workspace --verbose -- --test-threads=1
2 changes: 1 addition & 1 deletion src/extrinsic/signer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ pub trait Signer<T: Runtime> {
}

/// Extrinsic signer using a private key.
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct PairSigner<T: Runtime, P: Pair> {
account_id: T::AccountId,
nonce: Option<T::Index>,
Expand Down