We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
anvil_reorg
A method to rollback depth blocks back and then seal depth new blocks with different transactions:
depth
struct ReorgOptions { pub depth: u64, pub tx_block_pairs: Vec<(TransactionData, u64)>, } enum TransactionData { Json(TransactionRequest), Raw(Bytes), } #[rpc(name = "anvil_reorg")] fn reorg(&self, options: ReorgOptions) -> RpcResult<()>;
I think there is nothing blocking here, we just need to spend some engineering time on this
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A method to rollback
depth
blocks back and then sealdepth
new blocks with different transactions:I think there is nothing blocking here, we just need to spend some engineering time on this
The text was updated successfully, but these errors were encountered: