Search Apps Documentation Source Content File Folder Download Copy

init.gno

0.21 Kb ยท 14 lines
 1package validators
 2
 3import (
 4	"gno.land/p/demo/avl"
 5	"gno.land/p/nt/poa"
 6)
 7
 8func init() {
 9	// The default valset protocol is PoA
10	vp = poa.NewPoA()
11
12	// No changes to apply initially
13	changes = avl.NewTree()
14}