This commit is contained in:
Ivan Socolsky 2015-01-27 16:40:27 -03:00
parent 0a2a5a8873
commit b0e23e6952
1 changed files with 26 additions and 0 deletions

26
lib/model/txproposal.js Normal file
View File

@ -0,0 +1,26 @@
'use strict';
function TxProposal(opts) {
opts = opts || {};
this.creatorId = opts.creatorId;
this.toAddress = opts.toAddress;
this.amount = opts.amount;
this.changeAddress = opts.changeAddress;
this.inputs = opts.inputs;
};
TxProposal.fromObj = function (obj) {
var x = new TxProposal();
x.creatorId = obj.creatorId;
x.toAddress = obj.toAddress;
x.amount = obj.amount;
x.changeAddress = obj.changeAddress;
x.inputs = obj.inputs;
x.raw = obj.raw;
return x;
};
module.exports = TxProposal;