9 lines
211 B
Go
9 lines
211 B
Go
package internal
|
|
|
|
// internal types that need their own file to avoid circular imports.
|
|
|
|
// HeightHash struct for the height subscription endpoint.
|
|
type HeightHash struct {
|
|
Height uint64
|
|
BlockHash []byte
|
|
}
|