Skip to content

Commit

Permalink
fix: SetTraceNumber should populate contested and dishonored returns
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Jul 18, 2023
1 parent 9b612fd commit c0a92ac
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions entryDetail.go
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,12 @@ func (ed *EntryDetail) SetTraceNumber(ODFIIdentification string, seq int) {
if ed.Addenda99 != nil {
ed.Addenda99.TraceNumber = traceNumber
}
if ed.Addenda99Contested != nil {
ed.Addenda99Contested.TraceNumber = traceNumber
}
if ed.Addenda99Dishonored != nil {
ed.Addenda99Dishonored.TraceNumber = traceNumber
}
}

// RDFIIdentificationField get the rdfiIdentification with zero padding
Expand Down

0 comments on commit c0a92ac

Please sign in to comment.