Skip to content

Commit

Permalink
fix rpc/backend/blocks_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
name committed Mar 4, 2024
1 parent 2297e9b commit bc287c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rpc/backend/blocks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@ func (suite *BackendTestSuite) TestBlockBloom() {
{
Type: evmtypes.EventTypeBlockBloom,
Attributes: []types.EventAttribute{
{Key: []byte(evmtypes.AttributeKeyEthereumTxHash)},
{Key: string(evmtypes.AttributeKeyEthereumTxHash)},
},
},
},
Expand All @@ -850,7 +850,7 @@ func (suite *BackendTestSuite) TestBlockBloom() {
{
Type: evmtypes.EventTypeBlockBloom,
Attributes: []types.EventAttribute{
{Key: []byte(bAttributeKeyEthereumBloom)},
{Key: string(bAttributeKeyEthereumBloom)},
},
},
},
Expand Down Expand Up @@ -1565,7 +1565,7 @@ func (suite *BackendTestSuite) TestEthBlockFromTendermintBlock() {
{
Type: evmtypes.EventTypeBlockBloom,
Attributes: []types.EventAttribute{
{Key: []byte(bAttributeKeyEthereumBloom)},
{Key: string(bAttributeKeyEthereumBloom)},
},
},
},
Expand Down

0 comments on commit bc287c3

Please sign in to comment.