fixup: add missing file

This commit is contained in:
Tzu-Jung Lee 2018-08-07 19:39:58 -07:00
parent a7fe59dd49
commit f7a4ec80a5

11
change/blk.go Normal file
View file

@ -0,0 +1,11 @@
package change
import (
"github.com/btcsuite/btcd/chaincfg/chainhash"
)
// Block ...
type Block struct {
Hash chainhash.Hash
Changes []*Change
}