mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-15 19:02:42 +00:00
Changes four `ValidatorStore` batch signing methods to return `impl Stream` instead of `Future`. Services consume the stream and publish each batch as it arrives. No behavioral change for lh since `LighthouseValidatorStore` wraps everything in `stream::once` Also replaces anonymous tuples in method signatures with named structs Co-Authored-By: shane-moore <skm1790@gmail.com> Co-Authored-By: Michael Sproul <michaelsproul@users.noreply.github.com> Co-Authored-By: Mac L <mjladson@pm.me>
13 lines
308 B
TOML
13 lines
308 B
TOML
[package]
|
|
name = "validator_store"
|
|
version = "0.1.0"
|
|
edition = { workspace = true }
|
|
authors = ["Sigma Prime <contact@sigmaprime.io>"]
|
|
|
|
[dependencies]
|
|
bls = { workspace = true }
|
|
eth2 = { workspace = true }
|
|
futures = { workspace = true }
|
|
slashing_protection = { workspace = true }
|
|
types = { workspace = true }
|