Help with a simple proof of Authority example based on LocalMiner. #18472
andy-thomason
started this conversation in
Technical discussions
Replies: 1 comment 1 reply
-
|
what could work here if you write a simple delegate script that does
the last step is important, you can wire them with trusted-peers for example another option could be wiring the follower to the leader with reth/crates/node/core/src/args/debug.rs Lines 40 to 47 in 5f38ff7 so that it pulls the blocks from the leader over rpc |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
To all consensus buffs out there - I'm writing a little POA consensus example - I could contribute this when it is done but would appreciate some help in understanding the engine API.
We have one block producer node based on LocalMiner which does the following using ConsensusEngineHandle
What would be the corresponding flow for a follower node? I'm guessing that we would only have to share the block hash from the new payload and call fork_choice_updated, but I've had some cases where fork_choice_updated is stuck in the Syncing status on one or more nodes.
Beta Was this translation helpful? Give feedback.
All reactions