Skip to content

Commit

Permalink
fix rpc/backend/client_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
name committed Mar 4, 2024
1 parent c450976 commit ffbba6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rpc/backend/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ func RegisterBlockResultsWithEventLog(client *mocks.Client, height int64) (*tmrp
{Code: 0, GasUsed: 0, Events: []abci.Event{{
Type: evmtypes.EventTypeTxLog,
Attributes: []abci.EventAttribute{{
Key: []byte(evmtypes.AttributeKeyTxLog),
Value: []byte{0x7b, 0x22, 0x74, 0x65, 0x73, 0x74, 0x22, 0x3a, 0x20, 0x22, 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x22, 0x7d}, // Represents {"test": "hello"}
Key: evmtypes.AttributeKeyTxLog,
Value: "{\"test\": \"hello\"}",
Index: true,
}},
}}},
Expand Down

0 comments on commit ffbba6f

Please sign in to comment.