mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-22 09:29:38 +00:00
compare-states: add ignore-height flag and some tolerance to diff
This commit is contained in:
parent
74877383c3
commit
51868d8161
1 changed files with 16 additions and 2 deletions
|
@ -95,10 +95,18 @@ func cliMain(c *cli.Context) error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
var refHeight = ha
|
||||
if ha != hb {
|
||||
return errors.New("chains have different heights")
|
||||
var diff = hb - ha
|
||||
if ha > hb {
|
||||
refHeight = hb
|
||||
diff = ha - hb
|
||||
}
|
||||
h, err := bisectState(ca, cb, ha-1)
|
||||
if diff > 10 && !c.Bool("ignore-height") { // Allow some height drift.
|
||||
return fmt.Errorf("chains have different heights: %d vs %d", ha, hb)
|
||||
}
|
||||
}
|
||||
h, err := bisectState(ca, cb, refHeight-1)
|
||||
if err != nil {
|
||||
if errors.Is(err, errStateMatches) {
|
||||
return nil
|
||||
|
@ -142,6 +150,12 @@ func main() {
|
|||
ctl.Version = "1.0"
|
||||
ctl.Usage = "compare-states RPC_A RPC_B"
|
||||
ctl.Action = cliMain
|
||||
ctl.Flags = []cli.Flag{
|
||||
cli.BoolFlag{
|
||||
Name: "ignore-height, g",
|
||||
Usage: "ignore height difference",
|
||||
},
|
||||
}
|
||||
|
||||
if err := ctl.Run(os.Args); err != nil {
|
||||
fmt.Fprintln(os.Stderr, err)
|
||||
|
|
Loading…
Reference in a new issue