Skip to content

Commit f7768b4

Browse files
committed
adapter - dummy - why does CI fails :(
1 parent c292e72 commit f7768b4

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ env:
88
- CARGO_MAKE_RUN_CLIPPY="true"
99
matrix:
1010
fast_finish: true
11-
install:
12-
- if [[ $(cargo list | grep -c make) == 0 ]]; then cargo install --debug cargo-make ; else echo "Cargo make already installed, continuing..."; fi
11+
script:
12+
- which cargo-make || cargo install cargo-make
1313
- cargo make ci-flow

Makefile.toml

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = "true"
44
[tasks.clippy]
55
args = ["clippy", "--all-features", "--", "-D", "warnings"]
66

7-
87
[tasks.dev-test-flow]
98
dependencies = [
109
"format-flow",

adapter/src/dummy.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ impl Adapter for DummyAdapter<'_> {
5858
/// let adapter = DummyAdapter { config, participants: HashMap::new() };
5959
///
6060
/// let signature = "Dummy adapter signature for 6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435 by identity";
61-
/// assert!(adapter.verify("identity", "doesn't matter", signature) )
61+
/// assert!(adapter.verify("identity", "doesn't matter", signature));
6262
/// ```
6363
fn verify(&self, signer: &str, _state_root: &str, signature: &str) -> bool {
6464
// select the `identity` and compare it to the signer

0 commit comments

Comments
 (0)