urgent fix: take currency from amount, dont assume BTC
This commit is contained in:
parent
9d997280d3
commit
c3e65fb49d
@ -77,6 +77,6 @@ export function generateFakeSegwitAddress(
|
||||
}
|
||||
|
||||
// https://github.com/bitcoin/bitcoin/blob/master/src/policy/policy.cpp
|
||||
export function segwitMinAmount(): AmountJson {
|
||||
return Amounts.parseOrThrow("BTC:0.00000294");
|
||||
export function segwitMinAmount(currency: string): AmountJson {
|
||||
return Amounts.parseOrThrow(`${currency}:0.00000294`);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user