@bithomp/xrpl-api 3.3.9 → 3.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/ledger/currency.js +0 -3
- package/package.json +1 -1
package/lib/ledger/currency.js
CHANGED
|
@@ -198,9 +198,6 @@ function isDemurrageHex(currencyHex) {
|
|
|
198
198
|
if (!currencyText.match(/^[a-zA-Z0-9\s]+$/)) {
|
|
199
199
|
return false;
|
|
200
200
|
}
|
|
201
|
-
if (currencyText.toUpperCase() === (0, client_1.getNativeCurrency)()) {
|
|
202
|
-
return false;
|
|
203
|
-
}
|
|
204
201
|
const interestPeriod = hex2double(currencyHex.substring(16, 32));
|
|
205
202
|
if (isNaN(interestPeriod)) {
|
|
206
203
|
return false;
|