Add fromAddress and toAddress to TransferredToken.Clone (#1515)

Add fromAddress and toAddress to TransferredToken.Clone
This commit is contained in:
Mariano 2024-06-27 10:38:29 -03:00 committed by GitHub
parent 748ccfb0db
commit 3135276c2c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -58,6 +58,8 @@ func (t *TransferredToken) Clone() *TransferredToken {
TokenAddress: t.TokenAddress,
TokenChain: t.TokenChain,
Amount: amount,
FromAddress: t.FromAddress,
ToAddress: t.ToAddress,
}
}