Skip to content
This repository has been archived by the owner on Aug 1, 2022. It is now read-only.

Commit

Permalink
fix(ci): make clippy work on CI again (#748)
Browse files Browse the repository at this point in the history
* Make clippy work on CI again

This was first fixed in:
#430.

But then later broken in:
#721

* Appease clippy
  • Loading branch information
rudolfs authored Aug 3, 2020
1 parent f266600 commit 3941ab1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .buildkite/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ echo "--- Run proxy fmt"
(cd proxy && time cargo fmt --all -- --check)

echo "--- Run proxy lints"
(cd proxy && time cargo clippy --all --all-features --all-targets)
(cd proxy && time cargo clippy --all --all-features --all-targets -Z unstable-options)

echo "--- Run app eslint checks"
time yarn lint
Expand Down
1 change: 1 addition & 0 deletions proxy/src/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,7 @@ pub struct Registry {
client: protocol::Client,
}

/// A fake credit balance which we use in integration tests.
const PREPAID_AMOUNT_MICRO_RAD: Balance = 321 * 1_000_000;

/// Registry client wrapper methods
Expand Down

0 comments on commit 3941ab1

Please sign in to comment.