You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
507 B

'use strict';
function TxProposalAction(opts) {
opts = opts || {};
this.createdOn = Math.floor(Date.now() / 1000);
this.copayerId = opts.copayerId;
this.type = opts.type || (opts.signature ? 'accept' : 'reject');
this.signature = opts.signature;
};
TxProposalAction.fromObj = function (obj) {
var x = new TxProposalAction();
x.createdOn = obj.createdOn;
x.copayerId = obj.copayerId;
x.type = obj.type;
x.signature = obj.signature;
return x;
};
module.exports = TxProposalAction;