@abcpros/bitcore-wallet-service
Version:
A service for Mutisig HD Bitcoin Wallets
18 lines • 578 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OrderInfoNoti = void 0;
var OrderInfoNoti = (function () {
function OrderInfoNoti() {
}
OrderInfoNoti.create = function (opts) {
var x = new OrderInfoNoti();
x.orderId = opts.orderId;
x.receivedTxId = opts.receivedTxId || null;
x.pendingReason = opts.pendingReason || null;
x.error = opts.error || null;
return x;
};
return OrderInfoNoti;
}());
exports.OrderInfoNoti = OrderInfoNoti;
//# sourceMappingURL=OrderInfoNoti.js.map