-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removing a peer from tendermint #1557
Comments
Not really within Tendermint. You can use iptables or other networking /firewall software to do this. Or you can take down a node. You can also filter in the ABCI application if you want, but that's more involved: https://github.com/tendermint/tendermint/blob/develop/docs/specification/new-spec/abci.md#peer-filtering. We don't expose an rpc to disconnect from current nodes, because the Peer-Exchange Reactor is constantly trying to connect to nodes - so it wouldn't make sense. Could be an administrative feature but not a current priority. Will close this for now, thanks! |
* store: return metadata with LoadBlock Change the signature of the LoadBlock and LoadBlockByHash methods to also return block metadata. Reason: the main implementation fetches block metadata in process of retrieving the block from parts. Other implementations should likely do the same. * state: re-generate the BlockStore mock * Update tests to LoadBlock changes In mocks, have LoadBlock return also a `BlockMeta` value. * Changelog entry for tendermint#1557 * inspect: fix up test expectations for LoadBlock * consensus: fix off-by-one mistake in mock Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com> --------- Co-authored-by: Andy Nogueira <me@andynogueira.dev> Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com>
I had created a multi-node setup using tendermint consensus.Is there a possible way to remove or isolate the added peer from the multinode setup.
The text was updated successfully, but these errors were encountered: