0262a99321
* This was causing issues in future tests, since the subscription was causing blocks and transactions to be added to the DB
8 lines
117 B
Go
8 lines
117 B
Go
package core
|
|
|
|
type Blockchain interface {
|
|
SubscribeToBlocks(blocks chan Block)
|
|
StartListening()
|
|
StopListening()
|
|
}
|