diff options
author | Mission Liao <mission.liao@dexon.org> | 2019-04-02 17:51:57 +0800 |
---|---|---|
committer | Jimmy Hu <jimmy.hu@dexon.org> | 2019-04-02 17:51:57 +0800 |
commit | 49cda7c3671c9410e368db097a118d25127fef43 (patch) | |
tree | 48ae2f2a0889165302e7690a729345f53367545d | |
parent | 0382bbafbee5ffb820b9d31f7cfe8f6a48968a48 (diff) | |
download | dexon-consensus-49cda7c3671c9410e368db097a118d25127fef43.tar dexon-consensus-49cda7c3671c9410e368db097a118d25127fef43.tar.gz dexon-consensus-49cda7c3671c9410e368db097a118d25127fef43.tar.bz2 dexon-consensus-49cda7c3671c9410e368db097a118d25127fef43.tar.lz dexon-consensus-49cda7c3671c9410e368db097a118d25127fef43.tar.xz dexon-consensus-49cda7c3671c9410e368db097a118d25127fef43.tar.zst dexon-consensus-49cda7c3671c9410e368db097a118d25127fef43.zip |
Fix oops (#543)
-rw-r--r-- | core/types/block.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/types/block.go b/core/types/block.go index cff9546..1dcd41b 100644 --- a/core/types/block.go +++ b/core/types/block.go @@ -83,7 +83,7 @@ type Block struct { Payload []byte `json:"payload"` PayloadHash common.Hash `json:"payload_hash"` Witness Witness `json:"witness"` - Randomness []byte `json:"finalization"` + Randomness []byte `json:"randomness"` Signature crypto.Signature `json:"signature"` CRSSignature crypto.Signature `json:"crs_signature"` |