Skip to content

Commit

Permalink
fix: minimum bitcoin spend, closes #5739
Browse files Browse the repository at this point in the history
  • Loading branch information
kyranjamie committed Aug 15, 2024
1 parent a5a2f9b commit 34405f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/common/validation/forms/amount-validators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { FormErrorMessages } from '../../../../shared/error-messages';
import { formatInsufficientBalanceError, formatPrecisionError } from '../../error-formatters';
import { currencyAmountValidator, stxAmountPrecisionValidator } from './currency-validators';

const minSpendAmountInSats = 6000;
const minSpendAmountInSats = 546;

function amountValidator() {
return yup
Expand Down

0 comments on commit 34405f6

Please sign in to comment.