Prefer hex prefixed with 0x

This commit is contained in:
Taylor Gerring 2015-03-28 21:47:16 +01:00
parent d9f8b1e0c1
commit 129fabddb2
1 changed files with 2 additions and 2 deletions

View File

@ -243,8 +243,8 @@ func (l *LogRes) MarshalJSON() ([]byte, error) {
}
ext.Address = l.Address.Hex()
ext.Data = common.Bytes2Hex(l.Data)
ext.Number = common.Bytes2Hex(big.NewInt(int64(l.Number)).Bytes())
ext.Data = common.ToHex(l.Data)
ext.Number = common.ToHex(big.NewInt(int64(l.Number)).Bytes())
ext.Topics = make([]string, len(l.Topics))
for i, v := range l.Topics {
ext.Topics[i] = v.Hex()