Skip to content

Commit 9461b32

Browse files
authored
fix(pkg/da): fix json rpc types (#3200)
1 parent 1b73b88 commit 9461b32

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pkg/da/jsonrpc/header.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ type Header struct {
2020
// RawHeader contains the raw tendermint header fields.
2121
type RawHeader struct {
2222
ChainID string `json:"chain_id"`
23-
Height string `json:"height"`
23+
Height uint64 `json:"height"`
2424
Time time.Time `json:"time"`
2525
}
2626

2727
// Commit contains commit information.
2828
type Commit struct {
29-
Height string `json:"height"`
29+
Height uint64 `json:"height"`
3030
}
3131

3232
// DAHeader contains the Data Availability header.

0 commit comments

Comments
 (0)