From db3319341c2f6b6e42d75da8b2d1c27e72c18c45 Mon Sep 17 00:00:00 2001 From: Leigh <351529+leighmcculloch@users.noreply.github.com> Date: Tue, 9 Jun 2026 03:10:18 +0000 Subject: [PATCH] Fix conflicting comment: rent fee is refundable The comment for rentFeeCharged stated it is part of totalNonRefundableResourceFeeCharged, contradicting the comment on totalRefundableResourceFeeCharged which lists the rent fee as one of its components. Rent is a refundable resource, so rentFeeCharged is part of totalRefundableResourceFeeCharged. --- Stellar-ledger.x | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Stellar-ledger.x b/Stellar-ledger.x index 14b0bdc..292a20b 100644 --- a/Stellar-ledger.x +++ b/Stellar-ledger.x @@ -439,7 +439,7 @@ struct SorobanTransactionMetaExtV1 // transactions, this will be `0` for failed transactions. int64 totalRefundableResourceFeeCharged; // Amount (in stroops) that has been charged for rent. - // This is a part of `totalNonRefundableResourceFeeCharged`. + // This is a part of `totalRefundableResourceFeeCharged`. int64 rentFeeCharged; };