@caravan/psbt 1.8.0 → 1.9.0

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.js CHANGED
@@ -736,9 +736,6 @@ var PsbtV2 = class _PsbtV2 extends PsbtV2Maps {
736
736
  * set).
737
737
  */
738
738
  get isReadyForConstructor() {
739
- if (this.PSBT_GLOBAL_FALLBACK_LOCKTIME === null) {
740
- return false;
741
- }
742
739
  if (!this.isModifiable(["INPUTS" /* INPUTS */]) && !this.isModifiable(["OUTPUTS" /* OUTPUTS */])) {
743
740
  return false;
744
741
  }
package/dist/index.mjs CHANGED
@@ -695,9 +695,6 @@ var PsbtV2 = class _PsbtV2 extends PsbtV2Maps {
695
695
  * set).
696
696
  */
697
697
  get isReadyForConstructor() {
698
- if (this.PSBT_GLOBAL_FALLBACK_LOCKTIME === null) {
699
- return false;
700
- }
701
698
  if (!this.isModifiable(["INPUTS" /* INPUTS */]) && !this.isModifiable(["OUTPUTS" /* OUTPUTS */])) {
702
699
  return false;
703
700
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caravan/psbt",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "description": "typescript library for working with PSBTs",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",