Skip to content

Commit

Permalink
Fix warning about composite literal
Browse files Browse the repository at this point in the history
  • Loading branch information
palango committed Feb 26, 2024
1 parent 0b276ce commit a38676f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airgap/filterquery_marshall_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func TestFilterQueryMarshalling(t *testing.T) {
name: "Complete",
sample: FilterQueryParams{
Event: EpochRewardsDistributedToVoters,
Topics: [][]interface{}{[]interface{}{"0x00000011"}}, // these will be simple types always
Topics: [][]interface{}{{"0x00000011"}}, // these will be simple types always
FromBlock: big.NewInt(1000),
ToBlock: big.NewInt(2000),
},
Expand Down

0 comments on commit a38676f

Please sign in to comment.