diff --git a/contracts/FlowTransactionScheduler.cdc b/contracts/FlowTransactionScheduler.cdc index e39bddce..f89e35b8 100644 --- a/contracts/FlowTransactionScheduler.cdc +++ b/contracts/FlowTransactionScheduler.cdc @@ -688,7 +688,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.00001 + + return scaledExecutionFee + storageFee + inclusionFee } /// getNextIDAndIncrement returns the next ID and increments the ID counter