Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/tidy-plants-jump.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@hashgraph/asset-tokenization-contracts": minor
---

couponFor token balance bug fixed
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,7 @@ library CouponStorageWrapper {
couponFor_.recordDateReached = true;
couponFor_.tokenBalance = (registeredCoupon.snapshotId != 0)
? SnapshotsStorageWrapper.getTotalBalanceOfAtSnapshot(registeredCoupon.snapshotId, account)
: ERC3643StorageWrapper.getTotalBalanceForAdjustedAt(
account,
TimeTravelStorageWrapper.getBlockTimestamp()
);
: ERC3643StorageWrapper.getTotalBalanceForAdjustedAt(account, registeredCoupon.coupon.recordDate);
couponFor_.decimals = ERC20StorageWrapper.decimalsAdjustedAt(TimeTravelStorageWrapper.getBlockTimestamp());
Comment thread
AlbertoMolinaIoBuilders marked this conversation as resolved.
Outdated
couponFor_.nominalValue = NominalValueStorageWrapper.getNominalValue();
}
Expand Down
Loading