ipld-eth-server/core/blockchain_observer.go
Eric Meyer de2cb3b5cc Start introducing domain concepts
* Potential observers include a logger and/or an observer that writes to the DB
2017-10-23 12:08:59 -05:00

6 lines
77 B
Go

package core
type BlockchainObserver interface {
NotifyBlockAdded(Block)
}