Browse Source

.

activeAddress
Ivan Socolsky 10 years ago
parent
commit
b0e23e6952
  1. 26
      lib/model/txproposal.js

26
lib/model/txproposal.js

@ -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;
Loading…
Cancel
Save