2023-09-06 12:53:36 +00:00
|
|
|
# eth-statediff-compliance
|
|
|
|
|
|
|
|
Tooling to directly verify and benchmark the results of go-ethereum state diffs.
|
|
|
|
|
2023-09-20 06:07:22 +00:00
|
|
|
## Usage
|
|
|
|
|
2023-09-22 10:49:02 +00:00
|
|
|
Use `scripts/compare-diffs.sh` to compare outputs of `go-ethereum/statediff` and `plugeth-statediff`.
|
|
|
|
|
|
|
|
# Compare the output of geth-statediff and the statediff plugin (as of v0.1.1):
|
|
|
|
./scripts/compare-diffs.sh -d _var/ geth plugeth
|
|
|
|
|
|
|
|
# Compare geth-statediff and the plugin using parallel iterators:
|
|
|
|
./scripts/compare-diffs.sh -d _var/ geth plugeth
|
2023-09-20 06:07:22 +00:00
|
|
|
|
2023-09-22 10:49:02 +00:00
|
|
|
A zero exit code indicates identical outputs, modulo possible duplicate nodes.
|