add Fees and Taxes to the Record type

This commit is contained in:
2025-11-13 11:27:52 +00:00
parent 388fd439a1
commit bb93798c0f
6 changed files with 166 additions and 8 deletions

View File

@@ -39,6 +39,14 @@ func (r Record) Timestamp() time.Time {
return r.timestamp
}
func (r Record) Fees() *big.Float {
return new(big.Float) // FIX:
}
func (r Record) Taxes() *big.Float {
return new(big.Float) // FIX:
}
type RecordReader struct {
reader *csv.Reader
}