Skip to content

Commit

Permalink
chore: update ci
Browse files Browse the repository at this point in the history
Signed-off-by: oliveredget <[email protected]>
  • Loading branch information
oliveredget committed Dec 30, 2024
1 parent fc63b5c commit 3871b0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/spell-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: pip install codespell
- name: Run codespell
continue-on-error: ${{ github.event_name != 'pull_request' }}
run: codespell -w --skip="*.pb.go,*.pb.gw.go,*.json,*.git,*.js,*.h,*.bin,go.sum,go.mod,*.pdf,*.tla" --ignore-words=.github/.codespellignore --check-hidden
run: codespell -w --skip="*.pb.go,*.pb.gw.go,*.json,*.git,*.js,*.h,*.bin,go.sum,go.mod,*.pdf" --ignore-words=.github/.codespellignore --check-hidden
- uses: peter-evans/create-pull-request@v7
if: github.event_name != 'pull_request'
with:
Expand Down
2 changes: 1 addition & 1 deletion modules/apps/transfer/keeper/relay_model/relay.tla
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ SendTransferPre(packet, pbank) ==
/\ IsNativeDenomTrace(trace) \/ (IsValidDenomTrace(trace) /\ IsKnownDenomTrace(trace))
/\ data.sender /= NullId
/\ <<escrow, data.denomTrace>> \in DOMAIN pbank
/\ \/ amount = 0 \* SendTrasfer actually allows for 0 amount
/\ \/ amount = 0 \* SendTransfer actually allows for 0 amount
\/ <<MakeAccount(sender), trace>> \in DOMAIN pbank /\ bank[MakeAccount(sender), trace] >= amount

SendTransferNext(packet) ==
Expand Down

0 comments on commit 3871b0e

Please sign in to comment.