common: drop accessors for Value.Val
I don't see why we would need two different accessors for a public field.
This commit is contained in:
@ -49,7 +49,7 @@ func (db *MemDatabase) Print() {
|
||||
for key, val := range db.db {
|
||||
fmt.Printf("%x(%d): ", key, len(key))
|
||||
node := common.NewValueFromBytes(val)
|
||||
fmt.Printf("%q\n", node.Interface())
|
||||
fmt.Printf("%q\n", node.Val)
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user