Skip to content

Commit 69806e2

Browse files
committed
linter fixes
1 parent b25dd16 commit 69806e2

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

contracts/multisig/cw3-flex-multisig/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ documentation = "https://docs.cosmwasm.com"
1111

1212
[[bin]]
1313
name = "schema"
14-
required-features = ["cosmwasm-schema"]
1514

1615
[lib]
1716
crate-type = ["cdylib", "rlib"]

nym-api/src/ecash/tests/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ impl InternalCounters {
107107

108108
// just hash the current counter
109109
self.tx_hash_counter += 1;
110-
Hash::Sha256(sha2::Sha256::digest(&self.tx_hash_counter.to_be_bytes()).into())
110+
Hash::Sha256(sha2::Sha256::digest(self.tx_hash_counter.to_be_bytes()).into())
111111
}
112112

113113
#[allow(dead_code)]

0 commit comments

Comments
 (0)