mirror of
https://github.com/alexgo-io/gaze-indexer.git
synced 2026-04-30 20:52:01 +08:00
12 lines
270 B
Go
12 lines
270 B
Go
package entity
|
|
|
|
import "github.com/btcsuite/btcd/chaincfg/chainhash"
|
|
|
|
type IndexedBlock struct {
|
|
Height int64
|
|
Hash chainhash.Hash
|
|
PrevHash chainhash.Hash
|
|
EventHash chainhash.Hash
|
|
CumulativeEventHash chainhash.Hash
|
|
}
|