修改fund模型
This commit is contained in:
@@ -8,11 +8,16 @@ const DayLong = 24 * 60 * 60 * 1000;
|
|||||||
*/
|
*/
|
||||||
class Fund {
|
class Fund {
|
||||||
constructor (data) {
|
constructor (data) {
|
||||||
const { amount, blockNumber, hash } = data;
|
const { amount, blockNumber, hash, blockHash, from, to, timeStamp, value } = data;
|
||||||
this.amount = +amount;
|
this.amount = +amount;
|
||||||
|
this.from = from;
|
||||||
|
this.to = to;
|
||||||
|
this.value = value;
|
||||||
|
this.timeStamp = timeStamp;
|
||||||
this.status = 0;
|
this.status = 0;
|
||||||
this.blockNumber = blockNumber;
|
this.blockNumber = blockNumber;
|
||||||
this.blockHash = hash;
|
this.blockHash = blockHash;
|
||||||
|
this.hash = hash;
|
||||||
const now = new Date();
|
const now = new Date();
|
||||||
const exp = calExpirePeriod();
|
const exp = calExpirePeriod();
|
||||||
this.createdAt = now.toISOString();
|
this.createdAt = now.toISOString();
|
||||||
|
|||||||
Reference in New Issue
Block a user