Skip to content

Commit

Permalink
update error string to lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
AryanGodara committed Apr 11, 2024
1 parent 21a19ec commit f00833a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpc/types_transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ func (da *DataAvailabilityMode) UInt64() (uint64, error) {
case DAModeL2:
return uint64(1), nil
}
return 0, errors.New("Unknown DAMode")
return 0, errors.New("unknown DAMode")
}

type Resource string
Expand Down

0 comments on commit f00833a

Please sign in to comment.