mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-21 23:29:38 +00:00
scripts: fix linting
Should be a part of #3435. Signed-off-by: Anna Shaleva <shaleva.ann@nspcc.ru>
This commit is contained in:
parent
0435551eee
commit
a32217fac8
1 changed files with 8 additions and 2 deletions
|
@ -118,9 +118,15 @@ func cliMain(c *cli.Context) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
fmt.Printf("state differs at %d, block %s\n", h, blk.Hash().StringLE())
|
fmt.Printf("state differs at %d, block %s\n", h, blk.Hash().StringLE())
|
||||||
dumpApplogDiff(true, blk.Hash(), a, b, ca, cb)
|
err = dumpApplogDiff(true, blk.Hash(), a, b, ca, cb)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("failed to dump block application log: %w", err)
|
||||||
|
}
|
||||||
for _, t := range blk.Transactions {
|
for _, t := range blk.Transactions {
|
||||||
dumpApplogDiff(false, t.Hash(), a, b, ca, cb)
|
err = dumpApplogDiff(false, t.Hash(), a, b, ca, cb)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("failed to dump application log for tx %s: %w", t.Hash().StringLE(), err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return errors.New("different state found")
|
return errors.New("different state found")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue