Skip to content

Commit

Permalink
adding separator da path
Browse files Browse the repository at this point in the history
  • Loading branch information
srene committed Apr 28, 2024
1 parent d0e947a commit 77a97fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions da/da.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ func (d *DASubmitMetaData) ToPath() string {
for i, part := range path {
path[i] = strings.Trim(part, PathSeparator)
}
return strings.Join(path, "")
return strings.Join(path, PathSeparator)
} else {
path := []string{string(d.Client), PathSeparator, strconv.FormatUint(d.Height, 10)}
return strings.Join(path, "")
return strings.Join(path, PathSeparator)
}
}

Expand Down

0 comments on commit 77a97fc

Please sign in to comment.