diff options
author | Sonic <sonic@dexon.org> | 2019-04-08 13:31:19 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:59 +0800 |
commit | 8ff8dd8c99515a01aa9aeff8aae3850eb2ff01b3 (patch) | |
tree | 3788461889ef6ad98bb97711d418231cc08f69df /dex | |
parent | 21be3cc4db3f260ffc47d8d58d113ed71caeb12e (diff) | |
download | dexon-8ff8dd8c99515a01aa9aeff8aae3850eb2ff01b3.tar.gz dexon-8ff8dd8c99515a01aa9aeff8aae3850eb2ff01b3.tar.zst dexon-8ff8dd8c99515a01aa9aeff8aae3850eb2ff01b3.zip |
dex: remove RandomnessMsg (#342)
Diffstat (limited to 'dex')
-rw-r--r-- | dex/protocol.go | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/dex/protocol.go b/dex/protocol.go index adfda3c6f..2ce850dc3 100644 --- a/dex/protocol.go +++ b/dex/protocol.go @@ -85,11 +85,10 @@ const ( CoreBlockMsg = 0x20 VoteMsg = 0x21 AgreementMsg = 0x22 - RandomnessMsg = 0x23 - DKGPrivateShareMsg = 0x24 - DKGPartialSignatureMsg = 0x25 - PullBlocksMsg = 0x26 - PullVotesMsg = 0x27 + DKGPrivateShareMsg = 0x23 + DKGPartialSignatureMsg = 0x24 + PullBlocksMsg = 0x25 + PullVotesMsg = 0x26 GetGovStateMsg = 0x29 GovStateMsg = 0x2a |