fix merge error.

This commit is contained in:
Raúl Kripalani 2022-11-15 13:31:28 +00:00
parent 28ec43cdea
commit 43e2a2b451

View File

@ -286,7 +286,7 @@ func fakeEvent(emitter abi.ActorID, indexed []kv, unindexed []kv) *types.Event {
for _, in := range indexed {
ev.Entries = append(ev.Entries, types.EventEntry{
Flags: 0x01,
Key: []byte(in.k),
Key: in.k,
Value: in.v,
})
}
@ -294,7 +294,7 @@ func fakeEvent(emitter abi.ActorID, indexed []kv, unindexed []kv) *types.Event {
for _, in := range unindexed {
ev.Entries = append(ev.Entries, types.EventEntry{
Flags: 0x00,
Key: []byte(in.k),
Key: in.k,
Value: in.v,
})
}