mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 11:41:19 +00:00
74847d77e6
* turbo-geth to erigon * tg, turbo to erigon
22 lines
398 B
Go
22 lines
398 B
Go
package trie
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/ledgerwatch/erigon/common"
|
|
)
|
|
|
|
func TestValue(t *testing.T) {
|
|
t.Skip("should be restored. skipped for Erigon")
|
|
|
|
h := newHasher(false)
|
|
var hn common.Hash
|
|
h.hash(valueNode([]byte("BLAH")), false, hn[:])
|
|
expected := "0x0"
|
|
actual := fmt.Sprintf("0x%x", hn[:])
|
|
if actual != expected {
|
|
t.Errorf("Expected %s, got %x", expected, actual)
|
|
}
|
|
}
|