From 9d63d66820316b5d03aebf1a4e2d93239851b96f Mon Sep 17 00:00:00 2001 From: gregor <75445744+devbugging@users.noreply.github.com> Date: Wed, 15 Oct 2025 12:04:09 +0200 Subject: [PATCH 1/2] add inclusion fee --- contracts/FlowTransactionScheduler.cdc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/contracts/FlowTransactionScheduler.cdc b/contracts/FlowTransactionScheduler.cdc index d24dac9b..bce0665c 100644 --- a/contracts/FlowTransactionScheduler.cdc +++ b/contracts/FlowTransactionScheduler.cdc @@ -673,7 +673,10 @@ access(all) contract FlowTransactionScheduler { // Calculate the FLOW required to pay for storage of the transaction data let storageFee = FlowStorageFees.storageCapacityToFlow(dataSizeMB) - return scaledExecutionFee + storageFee + // Add inclusion Flow fee for scheduled transactions + let inclusionFee = 0.01 + + return scaledExecutionFee + storageFee + inclusionFee } /// getNextIDAndIncrement returns the next ID and increments the ID counter From f734ee0af43dea809d021af38e4063b8f09426b0 Mon Sep 17 00:00:00 2001 From: gregor <75445744+devbugging@users.noreply.github.com> Date: Wed, 15 Oct 2025 12:10:06 +0200 Subject: [PATCH 2/2] update inclusion fee --- contracts/FlowTransactionScheduler.cdc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/FlowTransactionScheduler.cdc b/contracts/FlowTransactionScheduler.cdc index bce0665c..5551fea9 100644 --- a/contracts/FlowTransactionScheduler.cdc +++ b/contracts/FlowTransactionScheduler.cdc @@ -674,7 +674,7 @@ access(all) contract FlowTransactionScheduler { let storageFee = FlowStorageFees.storageCapacityToFlow(dataSizeMB) // Add inclusion Flow fee for scheduled transactions - let inclusionFee = 0.01 + let inclusionFee = 0.00001 return scaledExecutionFee + storageFee + inclusionFee }