Remove the cached buffer getter
This commit is contained in:
parent
def2182eaf
commit
1326e0cc42
3 changed files with 0 additions and 44 deletions
20
src/psbt.js
20
src/psbt.js
|
@ -73,23 +73,6 @@ class Psbt {
|
||||||
const c = this.__CACHE;
|
const c = this.__CACHE;
|
||||||
c.__TX = this.data.globalMap.unsignedTx.tx;
|
c.__TX = this.data.globalMap.unsignedTx.tx;
|
||||||
if (this.data.inputs.length === 0) this.setVersion(2);
|
if (this.data.inputs.length === 0) this.setVersion(2);
|
||||||
// set cache
|
|
||||||
this.unsignedTx = Buffer.from([]);
|
|
||||||
Object.defineProperty(this, 'unsignedTx', {
|
|
||||||
enumerable: true,
|
|
||||||
get() {
|
|
||||||
const buf = c.__TX_BUF_CACHE;
|
|
||||||
if (buf !== undefined) {
|
|
||||||
return buf;
|
|
||||||
} else {
|
|
||||||
c.__TX_BUF_CACHE = c.__TX.toBuffer();
|
|
||||||
return c.__TX_BUF_CACHE;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
set(_data) {
|
|
||||||
c.__TX_BUF_CACHE = _data;
|
|
||||||
},
|
|
||||||
});
|
|
||||||
// Make data hidden when enumerating
|
// Make data hidden when enumerating
|
||||||
const dpew = (obj, attr, enumerable, writable) =>
|
const dpew = (obj, attr, enumerable, writable) =>
|
||||||
Object.defineProperty(obj, attr, {
|
Object.defineProperty(obj, attr, {
|
||||||
|
@ -137,7 +120,6 @@ class Psbt {
|
||||||
checkInputsForPartialSig(this.data.inputs, 'setVersion');
|
checkInputsForPartialSig(this.data.inputs, 'setVersion');
|
||||||
const c = this.__CACHE;
|
const c = this.__CACHE;
|
||||||
c.__TX.version = version;
|
c.__TX.version = version;
|
||||||
c.__TX_BUF_CACHE = undefined;
|
|
||||||
c.__EXTRACTED_TX = undefined;
|
c.__EXTRACTED_TX = undefined;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
@ -146,7 +128,6 @@ class Psbt {
|
||||||
checkInputsForPartialSig(this.data.inputs, 'setLocktime');
|
checkInputsForPartialSig(this.data.inputs, 'setLocktime');
|
||||||
const c = this.__CACHE;
|
const c = this.__CACHE;
|
||||||
c.__TX.locktime = locktime;
|
c.__TX.locktime = locktime;
|
||||||
c.__TX_BUF_CACHE = undefined;
|
|
||||||
c.__EXTRACTED_TX = undefined;
|
c.__EXTRACTED_TX = undefined;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
@ -158,7 +139,6 @@ class Psbt {
|
||||||
throw new Error('Input index too high');
|
throw new Error('Input index too high');
|
||||||
}
|
}
|
||||||
c.__TX.ins[inputIndex].sequence = sequence;
|
c.__TX.ins[inputIndex].sequence = sequence;
|
||||||
c.__TX_BUF_CACHE = undefined;
|
|
||||||
c.__EXTRACTED_TX = undefined;
|
c.__EXTRACTED_TX = undefined;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
|
@ -96,7 +96,6 @@ export class Psbt {
|
||||||
return psbt;
|
return psbt;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsignedTx: Buffer;
|
|
||||||
private __CACHE: PsbtCache = {
|
private __CACHE: PsbtCache = {
|
||||||
__NON_WITNESS_UTXO_TX_CACHE: [],
|
__NON_WITNESS_UTXO_TX_CACHE: [],
|
||||||
__NON_WITNESS_UTXO_BUF_CACHE: [],
|
__NON_WITNESS_UTXO_BUF_CACHE: [],
|
||||||
|
@ -115,24 +114,6 @@ export class Psbt {
|
||||||
c.__TX = (this.data.globalMap.unsignedTx as PsbtTransaction).tx;
|
c.__TX = (this.data.globalMap.unsignedTx as PsbtTransaction).tx;
|
||||||
if (this.data.inputs.length === 0) this.setVersion(2);
|
if (this.data.inputs.length === 0) this.setVersion(2);
|
||||||
|
|
||||||
// set cache
|
|
||||||
this.unsignedTx = Buffer.from([]);
|
|
||||||
Object.defineProperty(this, 'unsignedTx', {
|
|
||||||
enumerable: true,
|
|
||||||
get(): Buffer {
|
|
||||||
const buf = c.__TX_BUF_CACHE;
|
|
||||||
if (buf !== undefined) {
|
|
||||||
return buf;
|
|
||||||
} else {
|
|
||||||
c.__TX_BUF_CACHE = c.__TX.toBuffer();
|
|
||||||
return c.__TX_BUF_CACHE;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
set(_data: Buffer): void {
|
|
||||||
c.__TX_BUF_CACHE = _data;
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
// Make data hidden when enumerating
|
// Make data hidden when enumerating
|
||||||
const dpew = (
|
const dpew = (
|
||||||
obj: any,
|
obj: any,
|
||||||
|
@ -174,7 +155,6 @@ export class Psbt {
|
||||||
checkInputsForPartialSig(this.data.inputs, 'setVersion');
|
checkInputsForPartialSig(this.data.inputs, 'setVersion');
|
||||||
const c = this.__CACHE;
|
const c = this.__CACHE;
|
||||||
c.__TX.version = version;
|
c.__TX.version = version;
|
||||||
c.__TX_BUF_CACHE = undefined;
|
|
||||||
c.__EXTRACTED_TX = undefined;
|
c.__EXTRACTED_TX = undefined;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
@ -184,7 +164,6 @@ export class Psbt {
|
||||||
checkInputsForPartialSig(this.data.inputs, 'setLocktime');
|
checkInputsForPartialSig(this.data.inputs, 'setLocktime');
|
||||||
const c = this.__CACHE;
|
const c = this.__CACHE;
|
||||||
c.__TX.locktime = locktime;
|
c.__TX.locktime = locktime;
|
||||||
c.__TX_BUF_CACHE = undefined;
|
|
||||||
c.__EXTRACTED_TX = undefined;
|
c.__EXTRACTED_TX = undefined;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
@ -197,7 +176,6 @@ export class Psbt {
|
||||||
throw new Error('Input index too high');
|
throw new Error('Input index too high');
|
||||||
}
|
}
|
||||||
c.__TX.ins[inputIndex].sequence = sequence;
|
c.__TX.ins[inputIndex].sequence = sequence;
|
||||||
c.__TX_BUF_CACHE = undefined;
|
|
||||||
c.__EXTRACTED_TX = undefined;
|
c.__EXTRACTED_TX = undefined;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
@ -533,7 +511,6 @@ interface PsbtCache {
|
||||||
__NON_WITNESS_UTXO_BUF_CACHE: Buffer[];
|
__NON_WITNESS_UTXO_BUF_CACHE: Buffer[];
|
||||||
__TX_IN_CACHE: { [index: string]: number };
|
__TX_IN_CACHE: { [index: string]: number };
|
||||||
__TX: Transaction;
|
__TX: Transaction;
|
||||||
__TX_BUF_CACHE?: Buffer;
|
|
||||||
__FEE_RATE?: number;
|
__FEE_RATE?: number;
|
||||||
__EXTRACTED_TX?: Transaction;
|
__EXTRACTED_TX?: Transaction;
|
||||||
}
|
}
|
||||||
|
|
1
types/psbt.d.ts
vendored
1
types/psbt.d.ts
vendored
|
@ -41,7 +41,6 @@ export declare class Psbt {
|
||||||
static fromBase64(data: string, opts?: PsbtOptsOptional): Psbt;
|
static fromBase64(data: string, opts?: PsbtOptsOptional): Psbt;
|
||||||
static fromHex(data: string, opts?: PsbtOptsOptional): Psbt;
|
static fromHex(data: string, opts?: PsbtOptsOptional): Psbt;
|
||||||
static fromBuffer(buffer: Buffer, opts?: PsbtOptsOptional): Psbt;
|
static fromBuffer(buffer: Buffer, opts?: PsbtOptsOptional): Psbt;
|
||||||
unsignedTx: Buffer;
|
|
||||||
private __CACHE;
|
private __CACHE;
|
||||||
private opts;
|
private opts;
|
||||||
constructor(opts?: PsbtOptsOptional, data?: PsbtBase);
|
constructor(opts?: PsbtOptsOptional, data?: PsbtBase);
|
||||||
|
|
Loading…
Reference in a new issue