aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/dexon-foundation/dexon-consensus-core/core/crypto.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/dexon-foundation/dexon-consensus-core/core/crypto.go')
-rw-r--r--vendor/github.com/dexon-foundation/dexon-consensus-core/core/crypto.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/vendor/github.com/dexon-foundation/dexon-consensus-core/core/crypto.go b/vendor/github.com/dexon-foundation/dexon-consensus-core/core/crypto.go
index 8eb57fcd8..52f1c9167 100644
--- a/vendor/github.com/dexon-foundation/dexon-consensus-core/core/crypto.go
+++ b/vendor/github.com/dexon-foundation/dexon-consensus-core/core/crypto.go
@@ -50,7 +50,6 @@ func hashBlock(block *types.Block) (common.Hash, error) {
if err != nil {
return common.Hash{}, err
}
- payloadHash := crypto.Keccak256Hash(block.Payload)
hash := crypto.Keccak256Hash(
block.ProposerID.Hash[:],
@@ -58,7 +57,7 @@ func hashBlock(block *types.Block) (common.Hash, error) {
hashPosition[:],
hashAcks[:],
binaryTimestamp[:],
- payloadHash[:],
+ block.PayloadHash[:],
binaryWitness[:])
return hash, nil
}