Skip to content

Commit

Permalink
Merge pull request #7993 from filecoin-project/arajasek-patch-1
Browse files Browse the repository at this point in the history
chore: chain: fix log
  • Loading branch information
magik6k authored Jan 25, 2022
2 parents a246865 + 71c6d05 commit e3888b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chain/consensus/filcns/filecoin.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ func (filec *FilecoinEC) ValidateBlock(ctx context.Context, b *types.FullBlock)
}
}

return xerrors.Errorf("parent state root did not match computed state (%s != %s)", stateroot, h.ParentStateRoot)
return xerrors.Errorf("parent state root did not match computed state (%s != %s)", h.ParentStateRoot, stateroot)
}

if precp != h.ParentMessageReceipts {
Expand Down

0 comments on commit e3888b3

Please sign in to comment.