alkanesjs 1.1.5 → 1.1.7
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/dist/index.browser.mjs +4 -1
- package/dist/index.browser.mjs.map +2 -2
- package/dist/index.js +4 -1
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/index.browser.mjs
CHANGED
|
@@ -47474,7 +47474,7 @@ var ProtostoneTransaction = class {
|
|
|
47474
47474
|
if (Object.keys(utxo.alkanes).length > 0) {
|
|
47475
47475
|
continue;
|
|
47476
47476
|
}
|
|
47477
|
-
if (utxo.satoshis <
|
|
47477
|
+
if (utxo.satoshis < 1e3) {
|
|
47478
47478
|
continue;
|
|
47479
47479
|
}
|
|
47480
47480
|
utxosToMeetRequirementsSet.set(utxoId, utxo);
|
|
@@ -47545,6 +47545,9 @@ var ProtostoneTransaction = class {
|
|
|
47545
47545
|
});
|
|
47546
47546
|
}
|
|
47547
47547
|
try {
|
|
47548
|
+
if (changeValue < 546) {
|
|
47549
|
+
return false;
|
|
47550
|
+
}
|
|
47548
47551
|
hasChange = true;
|
|
47549
47552
|
this.psbt.addOutput({
|
|
47550
47553
|
address: this.changeAddress,
|