Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/cadence_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
path: ./imports
key: flow-deps-${{ hashFiles('flow.json') }}
- name: Install Flow CLI
run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)" -- v2.15.3
run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)" -- v2.16.0
- name: Flow CLI Version
run: flow version
- name: Update PATH and show Flow version
Expand Down
4 changes: 2 additions & 2 deletions cadence/contracts/interfaces/DeFiActions.cdc
Original file line number Diff line number Diff line change
Expand Up @@ -1115,7 +1115,7 @@ access(all) contract DeFiActions {
}

// check for other scheduled transactions within the desired interval
for id in self._scheduledTransactions.keys {
for id in self._scheduledTransactions {
if id == whileExecuting {
continue
}
Expand Down Expand Up @@ -1244,7 +1244,7 @@ access(all) contract DeFiActions {
let limit = 50
var iter = 0
// iterate over the scheduled transactions and remove those that are not scheduled
for id in self._scheduledTransactions.keys {
for id in self._scheduledTransactions {
iter = iter + 1
if iter > limit {
break
Expand Down
Loading