quorum/params/quorum.go

14 lines
405 B
Go
Raw Normal View History

2018-07-13 18:22:43 -07:00
package params
import "github.com/ethereum/go-ethereum/common"
var (
2018-10-30 00:59:08 -07:00
QuorumPermissionsContract = common.Address{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32}
QuorumPrivateKeyManagementContract = common.Address{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34}
2018-07-13 18:22:43 -07:00
)
const (
PERMISSIONED_CONFIG = "permissioned-nodes.json"
BLACKLIST_CONFIG = "disallowed-nodes.json"
)