de2cb3b5cc
* Potential observers include a logger and/or an observer that writes to the DB
6 lines
77 B
Go
6 lines
77 B
Go
package core
|
|
|
|
type BlockchainObserver interface {
|
|
NotifyBlockAdded(Block)
|
|
}
|