Skip to content

Commit

Permalink
Fix ADI fee lower limit
Browse files Browse the repository at this point in the history
  • Loading branch information
firelizzard18 committed Jun 7, 2024
1 parent c203048 commit 4ce6a0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protocol/fee_schedule.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ func (s *FeeSchedule) ComputeTransactionFee(tx *Transaction) (Fee, error) {
fee -= s.BareIdentityDiscount

// Don't charge less than the basic create account fee
if fee <= 0 {
if fee < FeeCreateDirectory {
fee = FeeCreateDirectory
}
}
Expand Down

0 comments on commit 4ce6a0b

Please sign in to comment.