6 lines
77 B
Go
6 lines
77 B
Go
package core
|
|
|
|
type BlockchainObserver interface {
|
|
NotifyBlockAdded(Block)
|
|
}
|