-
Notifications
You must be signed in to change notification settings - Fork 1
/
alias.go
36 lines (30 loc) · 1.04 KB
/
alias.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package keygen
import (
"github.com/hbtc-chain/bhchain/x/custodianunit/exported"
"github.com/hbtc-chain/bhchain/x/keygen/types"
)
const (
ModuleName = types.ModuleName
DefaultParamspace = types.DefaultParamspace
StoreKey = types.StoreKey
RouterKey = types.RouterKey
MaxWaitAssignKeyOrders = types.MaxWaitAssignKeyOrders
MaxPreKeyGenOrders = types.MaxPreKeyGenOrders
MaxKeyNodeHeartbeat = types.MaxKeyNodeHeartbeat
)
var (
RegisterCodec = types.RegisterCodec
ModuleCdc = types.ModuleCdc
HandleMsgNewOpCUForTest = handleMsgNewOpCU
HandleMsgKeyGenForTest = handleMsgKeyGen
HandleMsgKeyGenWaitSignForTest = handleMsgKeyGenWaitSign
)
type (
MsgKeyGen = types.MsgKeyGen
MsgKeyGenWaitSign = types.MsgKeyGenWaitSign
MsgPreKeyGen = types.MsgPreKeyGen
MsgKeyGenFinish = types.MsgKeyGenFinish
MsgOpcuMigrationKeyGen = types.MsgOpcuMigrationKeyGen
MsgNewOpCU = types.MsgNewOpCU
CustodianUnit = exported.CustodianUnit
)