Extend BIP174 PSBT base class

This commit is contained in:
Luke Childs 2019-06-24 17:20:15 +07:00
parent 62f1749021
commit 6a5e395ebd
6 changed files with 24 additions and 0 deletions

9
src/psbt.js Normal file
View file

@ -0,0 +1,9 @@
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
const bip174_1 = require('bip174');
class Psbt extends bip174_1.Psbt {
constructor() {
super();
}
}
exports.Psbt = Psbt;