Skip to content

Commit

Permalink
Merge pull request #5970 from onflow/bastian/diff-states
Browse files Browse the repository at this point in the history
Add command to diff states
  • Loading branch information
turbolent authored Jun 3, 2024
2 parents 03fb661 + 095669b commit 21ce1ae
Show file tree
Hide file tree
Showing 13 changed files with 1,011 additions and 116 deletions.
4 changes: 2 additions & 2 deletions cmd/util/cmd/bootstrap-execution-state-payloads/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func run(*cobra.Command, []string) {
storageSnapshot,
)
if err != nil {
log.Fatal().Err(err)
log.Fatal().Err(err).Msg("failed to run bootstrap procedure")
}

payloads := make([]*ledger.Payload, 0, len(executionSnapshot.WriteSet))
Expand All @@ -83,7 +83,7 @@ func run(*cobra.Command, []string) {
false,
)
if err != nil {
log.Fatal().Err(err)
log.Fatal().Err(err).Msg("failed to create payloads")
}

log.Info().Msgf("wrote %d payloads", numOfPayloadWritten)
Expand Down
Loading

0 comments on commit 21ce1ae

Please sign in to comment.