Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
skosito committed Apr 19, 2024
1 parent 81e6868 commit 9a7743a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpc/types/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ func BaseFeeFromEvents(events []abci.Event) *big.Int {

for _, attr := range event.Attributes {
if attr.Key == feemarkettypes.AttributeKeyBaseFee {
result, success := new(big.Int).SetString(string(attr.Value), 10)
result, success := new(big.Int).SetString(attr.Value, 10)
if success {
return result
}
Expand Down

0 comments on commit 9a7743a

Please sign in to comment.