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

@@ -12,6 +12,8 @@ type Record interface {
Price() *big.Float
Quantity() *big.Float
Timestamp() time.Time
Fees() *big.Float
Taxes() *big.Float
}
type RecordQueue struct {