Add firstTransaction boolean to Transaction.

This commit is contained in:
ogerly 2022-02-07 11:40:26 +01:00 committed by elweyn
parent 520cb22350
commit e22c701c88

View File

@ -15,6 +15,7 @@ export class Transaction {
this.balance = 0
this.totalBalance = 0
this.memo = ''
this.firstTransaction = false
}
@Field(() => String)
@ -52,4 +53,7 @@ export class Transaction {
@Field({ nullable: true })
decay?: Decay
@Field(() => Boolean)
firstTransaction: boolean
}