Merge pull request #3435 from nspcc-dev/extend-compare-scripts

scripts: dump diff for OnPersist and PostPersist applog
This commit is contained in:
Roman Khimov 2024-05-14 15:13:03 +03:00 committed by GitHub
commit 0435551eee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -118,13 +118,24 @@ func cliMain(c *cli.Context) error {
return err
}
fmt.Printf("state differs at %d, block %s\n", h, blk.Hash().StringLE())
dumpApplogDiff(true, blk.Hash(), a, b, ca, cb)
for _, t := range blk.Transactions {
fmt.Printf("transaction %s:\n", t.Hash().StringLE())
la, err := ca.GetApplicationLog(t.Hash(), nil)
dumpApplogDiff(false, t.Hash(), a, b, ca, cb)
}
return errors.New("different state found")
}
func dumpApplogDiff(isBlock bool, container util.Uint256, a string, b string, ca *rpcclient.Client, cb *rpcclient.Client) error {
if isBlock {
fmt.Printf("block %s:\n", container.StringLE())
} else {
fmt.Printf("transaction %s:\n", container.StringLE())
}
la, err := ca.GetApplicationLog(container, nil)
if err != nil {
return err
}
lb, err := cb.GetApplicationLog(t.Hash(), nil)
lb, err := cb.GetApplicationLog(container, nil)
if err != nil {
return err
}
@ -140,8 +151,7 @@ func cliMain(c *cli.Context) error {
Context: 1,
})
fmt.Println(diff)
}
return errors.New("different state found")
return nil
}
func main() {