mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
minor fixes
This commit is contained in:
parent
6dc50e2dfd
commit
94140c7cb7
2 changed files with 2 additions and 2 deletions
|
|
@ -17,9 +17,9 @@
|
|||
package memorydb
|
||||
|
||||
import (
|
||||
"encoding/binary"
|
||||
"testing"
|
||||
|
||||
"encoding/binary"
|
||||
"github.com/ethereum/go-ethereum/ethdb"
|
||||
"github.com/ethereum/go-ethereum/ethdb/dbtest"
|
||||
)
|
||||
|
|
|
|||
|
|
@ -571,7 +571,7 @@ func testIncompleteSync(t *testing.T, scheme string) {
|
|||
hash := crypto.Keccak256Hash(result.Data)
|
||||
if hash != root {
|
||||
addedKeys = append(addedKeys, result.Path)
|
||||
addedHashes = append(addedHashes, crypto.Keccak256Hash(result.Data))
|
||||
addedHashes = append(addedHashes, hash)
|
||||
}
|
||||
}
|
||||
// Fetch the next batch to retrieve
|
||||
|
|
|
|||
Loading…
Reference in a new issue