ipld-eth-server/core/geth_blockchain.go

15 lines
248 B
Go
Raw Normal View History

package core
import "fmt"
type GethBlockchain struct{}
func NewGethBlockchain() *GethBlockchain {
fmt.Println("Creating Gethblockchain")
return &GethBlockchain{}
}
func (blockchain *GethBlockchain) RegisterObserver(_ BlockchainObserver) {
}