diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-10-09 12:29:49 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | ac8233b77d97c57612dd48578aa5633a7e1f6a69 (patch) | |
tree | c6b0c2000b2dac32df6c55b2f5504b47960de8d1 /dex/network.go | |
parent | 1d877a782b6416820fe8da016b8570ed632543af (diff) | |
download | dexon-ac8233b77d97c57612dd48578aa5633a7e1f6a69.tar dexon-ac8233b77d97c57612dd48578aa5633a7e1f6a69.tar.gz dexon-ac8233b77d97c57612dd48578aa5633a7e1f6a69.tar.bz2 dexon-ac8233b77d97c57612dd48578aa5633a7e1f6a69.tar.lz dexon-ac8233b77d97c57612dd48578aa5633a7e1f6a69.tar.xz dexon-ac8233b77d97c57612dd48578aa5633a7e1f6a69.tar.zst dexon-ac8233b77d97c57612dd48578aa5633a7e1f6a69.zip |
core: vm: refactor and add DKGFinalizeds related implementations
Diffstat (limited to 'dex/network.go')
-rw-r--r-- | dex/network.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dex/network.go b/dex/network.go index b19b46147..24ef2cc63 100644 --- a/dex/network.go +++ b/dex/network.go @@ -39,8 +39,8 @@ func (n *DexconNetwork) BroadcastDKGPartialSignature( psig *types.DKGPartialSignature) { } -// BroadcastRandomnessRequest broadcasts rand request to DKG set. -func (n *DexconNetwork) BroadcastRandomnessRequest(randRequest *types.AgreementResult) { +// BroadcastAgreementResult broadcasts rand request to DKG set. +func (n *DexconNetwork) BroadcastAgreementResult(randRequest *types.AgreementResult) { } |