mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 02:51:01 +00:00
Address migration comments (#2910)
* Use workspace.[authors|edition] * Add repository.workspace = true * Upgrade dependencies to the polkadot-sdk versions * Upgrade async-std version * Update jsonrpsee version * cargo update * use ci-unified image
This commit is contained in:
committed by
Bastian Köcher
parent
018d6d8d1a
commit
8f26000e6a
@@ -1,16 +1,17 @@
|
||||
[package]
|
||||
name = "messages-relay"
|
||||
version = "0.1.0"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2021"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||
repository.workspace = true
|
||||
publish = false
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[dependencies]
|
||||
async-std = { version = "1.6.5", features = ["attributes"] }
|
||||
async-std = { version = "1.9.0", features = ["attributes"] }
|
||||
async-trait = "0.1.79"
|
||||
env_logger = "0.11"
|
||||
futures = "0.3.30"
|
||||
|
||||
@@ -313,7 +313,7 @@ where
|
||||
}
|
||||
|
||||
fn nonces_to_submit(&self) -> Option<RangeInclusive<MessageNonce>> {
|
||||
self.nonces_to_submit.as_ref().map(|(_, nonces, _)| nonces.clone())
|
||||
self.nonces_to_submit.clone().map(|(_, nonces, _)| nonces)
|
||||
}
|
||||
|
||||
fn reset_nonces_to_submit(&mut self) {
|
||||
|
||||
Reference in New Issue
Block a user