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
|
// https://github.com/bitcoin/bitcoin/blob/master/src/policy/policy.cpp
|
||||||
export function segwitMinAmount(): AmountJson {
|
export function segwitMinAmount(currency: string): AmountJson {
|
||||||
return Amounts.parseOrThrow("BTC:0.00000294");
|
return Amounts.parseOrThrow(`${currency}:0.00000294`);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user