mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 23:21:06 +00:00
Apply some clippy lints (#11154)
* Apply some clippy hints * Revert clippy ci changes * Update client/cli/src/commands/generate.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/cli/src/commands/inspect_key.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/db/src/bench.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/db/src/bench.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/service/src/client/block_rules.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/service/src/client/block_rules.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/network/src/transactions.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/network/src/protocol.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Revert due to missing `or_default` function. * Fix compilation and simplify code * Undo change that corrupts benchmark. * fix clippy * Update client/service/test/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/state-db/src/noncanonical.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/state-db/src/noncanonical.rs remove leftovers! * Update client/tracing/src/logging/directives.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update utils/fork-tree/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * added needed ref * Update frame/referenda/src/benchmarking.rs * Simplify byte-vec creation * let's just not overlap the ranges * Correction * cargo fmt * Update utils/frame/benchmarking-cli/src/shared/stats.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update utils/frame/benchmarking-cli/src/pallet/command.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update utils/frame/benchmarking-cli/src/pallet/command.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Giles Cope <gilescope@gmail.com>
This commit is contained in:
committed by
GitHub
parent
a990473cf9
commit
b581604aa7
@@ -220,7 +220,7 @@ pub trait Storage {
|
||||
|
||||
/// Get the next key in storage after the given one in lexicographic order.
|
||||
fn next_key(&mut self, key: &[u8]) -> Option<Vec<u8>> {
|
||||
self.next_storage_key(&key)
|
||||
self.next_storage_key(key)
|
||||
}
|
||||
|
||||
/// Start a new nested transaction.
|
||||
@@ -629,7 +629,7 @@ pub trait Crypto {
|
||||
///
|
||||
/// Returns the public key.
|
||||
fn ed25519_generate(&mut self, id: KeyTypeId, seed: Option<Vec<u8>>) -> ed25519::Public {
|
||||
let seed = seed.as_ref().map(|s| std::str::from_utf8(&s).expect("Seed is valid utf8!"));
|
||||
let seed = seed.as_ref().map(|s| std::str::from_utf8(s).expect("Seed is valid utf8!"));
|
||||
let keystore = &***self
|
||||
.extension::<KeystoreExt>()
|
||||
.expect("No `keystore` associated for the current context!");
|
||||
@@ -678,7 +678,7 @@ pub trait Crypto {
|
||||
pub_key: &ed25519::Public,
|
||||
) -> bool {
|
||||
self.extension::<VerificationExt>()
|
||||
.map(|extension| extension.push_ed25519(sig.clone(), pub_key.clone(), msg.to_vec()))
|
||||
.map(|extension| extension.push_ed25519(sig.clone(), *pub_key, msg.to_vec()))
|
||||
.unwrap_or_else(|| ed25519_verify(sig, msg, pub_key))
|
||||
}
|
||||
|
||||
@@ -705,7 +705,7 @@ pub trait Crypto {
|
||||
pub_key: &sr25519::Public,
|
||||
) -> bool {
|
||||
self.extension::<VerificationExt>()
|
||||
.map(|extension| extension.push_sr25519(sig.clone(), pub_key.clone(), msg.to_vec()))
|
||||
.map(|extension| extension.push_sr25519(sig.clone(), *pub_key, msg.to_vec()))
|
||||
.unwrap_or_else(|| sr25519_verify(sig, msg, pub_key))
|
||||
}
|
||||
|
||||
@@ -753,7 +753,7 @@ pub trait Crypto {
|
||||
///
|
||||
/// Returns the public key.
|
||||
fn sr25519_generate(&mut self, id: KeyTypeId, seed: Option<Vec<u8>>) -> sr25519::Public {
|
||||
let seed = seed.as_ref().map(|s| std::str::from_utf8(&s).expect("Seed is valid utf8!"));
|
||||
let seed = seed.as_ref().map(|s| std::str::from_utf8(s).expect("Seed is valid utf8!"));
|
||||
let keystore = &***self
|
||||
.extension::<KeystoreExt>()
|
||||
.expect("No `keystore` associated for the current context!");
|
||||
@@ -803,7 +803,7 @@ pub trait Crypto {
|
||||
///
|
||||
/// Returns the public key.
|
||||
fn ecdsa_generate(&mut self, id: KeyTypeId, seed: Option<Vec<u8>>) -> ecdsa::Public {
|
||||
let seed = seed.as_ref().map(|s| std::str::from_utf8(&s).expect("Seed is valid utf8!"));
|
||||
let seed = seed.as_ref().map(|s| std::str::from_utf8(s).expect("Seed is valid utf8!"));
|
||||
let keystore = &***self
|
||||
.extension::<KeystoreExt>()
|
||||
.expect("No `keystore` associated for the current context!");
|
||||
@@ -888,7 +888,7 @@ pub trait Crypto {
|
||||
pub_key: &ecdsa::Public,
|
||||
) -> bool {
|
||||
self.extension::<VerificationExt>()
|
||||
.map(|extension| extension.push_ecdsa(sig.clone(), pub_key.clone(), msg.to_vec()))
|
||||
.map(|extension| extension.push_ecdsa(sig.clone(), *pub_key, msg.to_vec()))
|
||||
.unwrap_or_else(|| ecdsa_verify(sig, msg, pub_key))
|
||||
}
|
||||
|
||||
@@ -1504,14 +1504,7 @@ pub trait Sandbox {
|
||||
state_ptr: Pointer<u8>,
|
||||
) -> u32 {
|
||||
self.sandbox()
|
||||
.invoke(
|
||||
instance_idx,
|
||||
&function,
|
||||
&args,
|
||||
return_val_ptr,
|
||||
return_val_len,
|
||||
state_ptr.into(),
|
||||
)
|
||||
.invoke(instance_idx, function, args, return_val_ptr, return_val_len, state_ptr.into())
|
||||
.expect("Failed to invoke function with sandbox")
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user