Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:castle-finance/castle-vault into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
charlieyou committed Jun 8, 2022
2 parents 983aa06 + 8ae953d commit d0af863
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/soteria.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Soteria Pro Audit
name: Sec3 Pro Audit
on:
push:
branches:
Expand All @@ -17,13 +17,13 @@ jobs:
steps:
- name: Check-out the repository
uses: actions/checkout@v2
- name: Soteria Pro Audit
- name: Sec3 Pro Audit
continue-on-error: true # set to true if you don't want to fail jobs
uses: soteria-bc/pro-action-pilot@v1
uses: sec3dev/pro-action@v1
with:
soteria-token: ${{ secrets.SOTERIA_TOKEN }}
sec3-token: ${{ secrets.SOTERIA_TOKEN }}
path: programs/castle-vault
- name: Upload Sarif Report
uses: github/codeql-action/upload-sarif@v1
with:
sarif_file: soteria-report.sarif
sarif_file: sec3-report.sarif
4 changes: 2 additions & 2 deletions programs/castle-vault/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ pub mod castle_vault {

pub fn initialize(
ctx: Context<Initialize>,
_bumps: InitBumpSeeds,
bumps: InitBumpSeeds,
config: VaultConfigArg,
) -> ProgramResult {
instructions::init_vault::handler(ctx, _bumps, config)
instructions::init_vault::handler(ctx, bumps, config)
}

pub fn initialize_jet<'info>(
Expand Down

0 comments on commit d0af863

Please sign in to comment.