forked from cerc-io/plugeth
Values should accept bytes as valid string output
This commit is contained in:
parent
e5b97fe03e
commit
b7a636b894
@ -98,6 +98,8 @@ func (val *Value) Str() string {
|
||||
return string(a)
|
||||
} else if a, ok := val.Val.(string); ok {
|
||||
return a
|
||||
} else if a, ok := val.Val.(byte); ok {
|
||||
return string(a)
|
||||
}
|
||||
|
||||
return ""
|
||||
|
Loading…
Reference in New Issue
Block a user