Skip to content

Commit

Permalink
keep fixing stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
girazoki committed Aug 29, 2023
1 parent ae9009e commit f53a010
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@ rustflags = [
"-Aclippy::while_immutable_condition", # false positives
"-Aclippy::needless_option_as_deref", # false positives
"-Aclippy::derivable_impls", # false positives
"-Aclippy::explicit_counter_loop" # irrelevant
"-Aclippy::explicit_counter_loop", # irrelevant
"-Aclippy::redundant_closure_call" # false positives
]
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ jobs:
- name: Upload binary
uses: actions/[email protected]
with:
name: moonbeam
path: build
name: moonkit-template
path: build/moonkit-template

build-features:
runs-on:
Expand All @@ -231,7 +231,7 @@ jobs:
uses: actions/[email protected]
with:
name: moonkit-template-features
path: build
path: build/moonkit-template

rust-test:
runs-on:
Expand Down
2 changes: 1 addition & 1 deletion client/consensus/nimbus-consensus/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ where
let pre_hash = header.hash();

let raw_sig = Keystore::sign_with(
&*keystore,
keystore,
NIMBUS_KEY_ID,
*crypto_id,
public_pair,
Expand Down
2 changes: 1 addition & 1 deletion template/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version = "0.1.0"
targets = [ "x86_64-unknown-linux-gnu" ]

[[bin]]
name = "parachain-collator"
name = "moonkit-template"
path = "src/main.rs"

[dependencies]
Expand Down

0 comments on commit f53a010

Please sign in to comment.