forked from cerc-io/ipld-eth-server
8 lines
117 B
Go
8 lines
117 B
Go
package core
|
|
|
|
type Blockchain interface {
|
|
SubscribeToBlocks(blocks chan Block)
|
|
StartListening()
|
|
StopListening()
|
|
}
|