mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 01:17:36 +00:00
e2571a43aa
The signing set should be the first group to submit preprocesses to Tributary. Re-attempts shouldn't be once every 30s, yet n blocks since the last relevant message. Removes the use of an async task/channel in the signer (and Substrate signer). Also removes the need to be able to get the time from a coin's block, which was a fragile system marked with a TODO already.
26 lines
878 B
TOML
26 lines
878 B
TOML
[package]
|
|
name = "processor-messages"
|
|
version = "0.1.0"
|
|
description = "Messages sent and received by the processor"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/processor/messages"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = []
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
zeroize = { version = "1", features = ["derive"] }
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
dkg = { path = "../../crypto/dkg", features = ["serde"] }
|
|
|
|
serai-primitives = { path = "../../substrate/primitives" }
|
|
in-instructions-primitives = { path = "../../substrate/in-instructions/primitives" }
|
|
tokens-primitives = { path = "../../substrate/tokens/primitives" }
|
|
validator-sets-primitives = { path = "../../substrate/validator-sets/primitives" }
|