Skip to content

Commit 25a2601

Browse files
Add register_global_constant
1 parent 0b96ec4 commit 25a2601

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

node/data.go

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,19 @@ import (
99
)
1010

1111
const (
12-
KindActivation = "activate_account"
13-
KindBallot = "ballot"
14-
KindDelegation = "delegation"
15-
KindDoubleBaking = "double_baking_evidence"
16-
KindDoubleEndorsing = "double_endorsement_evidence"
17-
KindEndorsement = "endorsement"
18-
KindEndorsementWithSlot = "endorsement_with_slot"
19-
KindOrigination = "origination"
20-
KindProposal = "proposals"
21-
KindReveal = "reveal"
22-
KindNonceRevelation = "seed_nonce_revelation"
23-
KindTransaction = "transaction"
12+
KindActivation = "activate_account"
13+
KindBallot = "ballot"
14+
KindDelegation = "delegation"
15+
KindDoubleBaking = "double_baking_evidence"
16+
KindDoubleEndorsing = "double_endorsement_evidence"
17+
KindEndorsement = "endorsement"
18+
KindEndorsementWithSlot = "endorsement_with_slot"
19+
KindOrigination = "origination"
20+
KindProposal = "proposals"
21+
KindReveal = "reveal"
22+
KindNonceRevelation = "seed_nonce_revelation"
23+
KindTransaction = "transaction"
24+
KindRegisterGlobalConstant = "register_global_constant"
2425
)
2526

2627
// Errors

0 commit comments

Comments
 (0)