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