add comment for clarification

This commit is contained in:
einhorn_b 2023-08-30 16:18:01 +02:00
parent 88ca30e5fd
commit 7b2d5245d7

View File

@ -22,6 +22,7 @@ export class TransactionRecipe {
@Column({ name: 'iota_message_id', type: 'binary', length: 32, nullable: true })
iotaMessageId?: Buffer
// if transaction has a sender than it is also the sender account
@ManyToOne(() => Account, (account) => account.transactionRecipesSigning)
@JoinColumn({ name: 'signing_account_id' })
signingAccount: Account