Skip to content

Commit

Permalink
fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dssei committed Oct 30, 2024
1 parent b40eafb commit bfeccba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/confidentialtransfers/types/msgs.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ func (m *MsgTransfer) FromProto() (*Transfer, error) {
}

Check warning on line 179 in x/confidentialtransfers/types/msgs.go

View check run for this annotation

Codecov / codecov/patch

x/confidentialtransfers/types/msgs.go#L178-L179

Added lines #L178 - L179 were not covered by tests

// iterate over m.Auditors and convert them to types.Auditor
var auditors []*TransferAuditor
auditors := make([]*TransferAuditor, 0, len(m.Auditors))
for _, auditor := range m.Auditors {
auditorData, e := auditor.FromProto()
if e != nil {
Expand Down

0 comments on commit bfeccba

Please sign in to comment.