Commit eac4d582 authored by Taylor Gerring's avatar Taylor Gerring

Patches

parent 1045015a
......@@ -47,6 +47,7 @@ func newHexData(input interface{}) *hexdata {
if input == nil {
d.data = nil
return d
}
switch input := input.(type) {
case []byte:
......@@ -57,8 +58,8 @@ func newHexData(input interface{}) *hexdata {
d.data = input.Bytes()
case common.Address:
d.data = input.Bytes()
case *common.Address:
d.data = input.Bytes()
// case *common.Address:
// d.data = input.Bytes()
case *big.Int:
d.data = input.Bytes()
case int64:
......
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