conversion state
This commit is contained in:
@@ -5,8 +5,8 @@ import (
|
||||
|
||||
checker "gopkg.in/check.v1"
|
||||
|
||||
"github.com/ethereum/go-ethereum/ethdb"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/ethdb"
|
||||
)
|
||||
|
||||
type StateSuite struct {
|
||||
@@ -15,15 +15,16 @@ type StateSuite struct {
|
||||
|
||||
var _ = checker.Suite(&StateSuite{})
|
||||
|
||||
// var ZeroHash256 = make([]byte, 32)
|
||||
var toAddr = common.BytesToAddress
|
||||
|
||||
func (s *StateSuite) TestDump(c *checker.C) {
|
||||
return
|
||||
// generate a few entries
|
||||
obj1 := s.state.GetOrNewStateObject([]byte{0x01})
|
||||
obj1 := s.state.GetOrNewStateObject(toAddr([]byte{0x01}))
|
||||
obj1.AddBalance(big.NewInt(22))
|
||||
obj2 := s.state.GetOrNewStateObject([]byte{0x01, 0x02})
|
||||
obj2 := s.state.GetOrNewStateObject(toAddr([]byte{0x01, 0x02}))
|
||||
obj2.SetCode([]byte{3, 3, 3, 3, 3, 3, 3})
|
||||
obj3 := s.state.GetOrNewStateObject([]byte{0x02})
|
||||
obj3 := s.state.GetOrNewStateObject(toAddr([]byte{0x02}))
|
||||
obj3.SetBalance(big.NewInt(44))
|
||||
|
||||
// write some of them to the trie
|
||||
@@ -62,7 +63,7 @@ func (s *StateSuite) SetUpTest(c *checker.C) {
|
||||
}
|
||||
|
||||
func (s *StateSuite) TestSnapshot(c *checker.C) {
|
||||
stateobjaddr := []byte("aa")
|
||||
stateobjaddr := toAddr([]byte("aa"))
|
||||
storageaddr := common.Big("0")
|
||||
data1 := common.NewValue(42)
|
||||
data2 := common.NewValue(43)
|
||||
|
Reference in New Issue
Block a user