Commit 20fe9289 authored by Guillaume Ballet's avatar Guillaume Ballet Committed by Felix Lange

whisper: rename EnvNonce to Nonce in the v6 Envelope (#15579)

parent 54aeb8e4
...@@ -42,7 +42,7 @@ type Envelope struct { ...@@ -42,7 +42,7 @@ type Envelope struct {
Topic TopicType Topic TopicType
AESNonce []byte AESNonce []byte
Data []byte Data []byte
EnvNonce uint64 Nonce uint64
pow float64 // Message-specific PoW as described in the Whisper specification. pow float64 // Message-specific PoW as described in the Whisper specification.
hash common.Hash // Cached hash of the envelope to avoid rehashing every time. hash common.Hash // Cached hash of the envelope to avoid rehashing every time.
...@@ -70,7 +70,7 @@ func NewEnvelope(ttl uint32, topic TopicType, aesNonce []byte, msg *sentMessage) ...@@ -70,7 +70,7 @@ func NewEnvelope(ttl uint32, topic TopicType, aesNonce []byte, msg *sentMessage)
Topic: topic, Topic: topic,
AESNonce: aesNonce, AESNonce: aesNonce,
Data: msg.Raw, Data: msg.Raw,
EnvNonce: 0, Nonce: 0,
} }
if EnvelopeVersion < 256 { if EnvelopeVersion < 256 {
...@@ -119,7 +119,7 @@ func (e *Envelope) Seal(options *MessageParams) error { ...@@ -119,7 +119,7 @@ func (e *Envelope) Seal(options *MessageParams) error {
d := new(big.Int).SetBytes(crypto.Keccak256(buf)) d := new(big.Int).SetBytes(crypto.Keccak256(buf))
firstBit := math.FirstBitSet(d) firstBit := math.FirstBitSet(d)
if firstBit > bestBit { if firstBit > bestBit {
e.EnvNonce, bestBit = nonce, firstBit e.Nonce, bestBit = nonce, firstBit
if target > 0 && bestBit >= target { if target > 0 && bestBit >= target {
return nil return nil
} }
...@@ -146,7 +146,7 @@ func (e *Envelope) calculatePoW(diff uint32) { ...@@ -146,7 +146,7 @@ func (e *Envelope) calculatePoW(diff uint32) {
buf := make([]byte, 64) buf := make([]byte, 64)
h := crypto.Keccak256(e.rlpWithoutNonce()) h := crypto.Keccak256(e.rlpWithoutNonce())
copy(buf[:32], h) copy(buf[:32], h)
binary.BigEndian.PutUint64(buf[56:], e.EnvNonce) binary.BigEndian.PutUint64(buf[56:], e.Nonce)
d := new(big.Int).SetBytes(crypto.Keccak256(buf)) d := new(big.Int).SetBytes(crypto.Keccak256(buf))
firstBit := math.FirstBitSet(d) firstBit := math.FirstBitSet(d)
x := gmath.Pow(2, float64(firstBit)) x := gmath.Pow(2, float64(firstBit))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment