diff --git a/op-challenger/cmd/list_claims.go b/op-challenger/cmd/list_claims.go index 440db293f588..6d07454aa388 100644 --- a/op-challenger/cmd/list_claims.go +++ b/op-challenger/cmd/list_claims.go @@ -116,13 +116,13 @@ func listClaims(ctx context.Context, game contracts.FaultDisputeGameContract, ve } now := time.Now() lineFormat := "%3v %-7v %6v %5v %14v " + valueFormat + " %-42v %12v %-19v %10v %v\n" - info := fmt.Sprintf(lineFormat, "Idx", "Move", "Parent", "Depth", "Index", "Value", "Claimant", "Bond (ETH)", "Time", "Clock Used", "Resolution") + info := fmt.Sprintf(lineFormat, "Idx", "Move", "Parent", "Depth", "Trace", "Value", "Claimant", "Bond (ETH)", "Time", "Clock Used", "Resolution") for i, claim := range claims { pos := claim.Position parent := strconv.Itoa(claim.ParentContractIndex) var elapsed time.Duration // Root claim does not accumulate any time on its team's chess clock if claim.IsRoot() { - parent = "" + parent = "-" } else { parentClaim, err := gameState.GetParent(claim) if err != nil {