good morning!!!!

Skip to content
Snippets Groups Projects
Commit eac4d582 authored by Taylor Gerring's avatar Taylor Gerring
Browse files

Patches

parent 1045015a
No related branches found
No related tags found
No related merge requests found
...@@ -47,6 +47,7 @@ func newHexData(input interface{}) *hexdata { ...@@ -47,6 +47,7 @@ func newHexData(input interface{}) *hexdata {
if input == nil { if input == nil {
d.data = nil d.data = nil
return d
} }
switch input := input.(type) { switch input := input.(type) {
case []byte: case []byte:
...@@ -57,8 +58,8 @@ func newHexData(input interface{}) *hexdata { ...@@ -57,8 +58,8 @@ func newHexData(input interface{}) *hexdata {
d.data = input.Bytes() d.data = input.Bytes()
case common.Address: case common.Address:
d.data = input.Bytes() d.data = input.Bytes()
case *common.Address: // case *common.Address:
d.data = input.Bytes() // d.data = input.Bytes()
case *big.Int: case *big.Int:
d.data = input.Bytes() d.data = input.Bytes()
case int64: case int64:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment