Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -671,8 +671,9 @@ abstract contract Scheduler is IScheduler, SchedulerState {
function getMinimumBalance(
uint8 numPriceFeeds
) external pure override returns (uint256 minimumBalanceInWei) {
// Simple implementation - minimum balance is 0.01 ETH per price feed
return numPriceFeeds * 0.01 ether;
// Placeholder implementation
// TODO: make this governable
return uint256(numPriceFeeds) * 0.01 ether;
}

// ACCESS CONTROL MODIFIERS
Expand Down
Loading
Loading