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
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Remove the quarantine module [#2695](https://github.com/provenance-io/provenance/issues/2695).
18 changes: 3 additions & 15 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,12 @@ jobs:
# So we'll split everything else 3 ways, and make those part 03 and 04
run: |
grep -vF \
-e 'github.com/provenance-io/provenance/x/quarantine/simulation' \
-e 'github.com/provenance-io/provenance/x/sanction/simulation' \
pkgs.txt > pkgs.txt.tmp
split -d -n l/3 pkgs.txt.tmp pkgs.txt.part.
printf '%s\n' \
'github.com/provenance-io/provenance/x/quarantine/simulation' \
>> pkgs.txt.part.03
printf '%s\n' \
'github.com/provenance-io/provenance/x/sanction/simulation' \
>> pkgs.txt.part.04
>> pkgs.txt.part.03
Comment thread
nagarajdivine marked this conversation as resolved.
- uses: actions/upload-artifact@v7
with:
name: "${{ steps.def-vars.outputs.file-prefix }}-pkgs.txt.part.00"
Expand All @@ -78,10 +74,6 @@ jobs:
with:
name: "${{ steps.def-vars.outputs.file-prefix }}-pkgs.txt.part.03"
path: ./pkgs.txt.part.03
- uses: actions/upload-artifact@v7
with:
name: "${{ steps.def-vars.outputs.file-prefix }}-pkgs.txt.part.04"
path: ./pkgs.txt.part.04
outputs:
should-run: ${{ env.GIT_DIFF }}
file-prefix: ${{ steps.def-vars.outputs.file-prefix }}
Expand All @@ -95,7 +87,7 @@ jobs:
strategy:
fail-fast: false
matrix:
part: ["00", "01", "02", "03", "04"]
part: ["00", "01", "02", "03"]
runs-on: ubuntu-latest
Comment thread
coderabbitai[bot] marked this conversation as resolved.
env:
LD_LIBRARY_PATH: /usr/local/lib:/usr/local/lib/x86_64-linux-gnu
Expand Down Expand Up @@ -152,10 +144,6 @@ jobs:
if: needs.setup-tests.outputs.should-run
with:
name: "${{ needs.setup-tests.outputs.file-prefix }}-03-coverage"
- uses: actions/download-artifact@v8
if: needs.setup-tests.outputs.should-run
with:
name: "${{ needs.setup-tests.outputs.file-prefix }}-04-coverage"
- name: Combine profiles
if: needs.setup-tests.outputs.should-run
run: |
Expand Down Expand Up @@ -187,7 +175,7 @@ jobs:
strategy:
fail-fast: false
matrix:
part: ["00", "01", "02", "03", "04"]
part: ["00", "01", "02", "03"]
env:
LD_LIBRARY_PATH: /usr/local/lib:/usr/local/lib/x86_64-linux-gnu
steps:
Expand Down
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ func New(
// If evidence needs to be handled for the app, set routes in router here and seal
app.EvidenceKeeper = *evidenceKeeper

app.QuarantineKeeper = quarantinekeeper.NewKeeper(appCodec, keys[quarantine.StoreKey], app.BankKeeper, authtypes.NewModuleAddress(quarantine.ModuleName))
app.QuarantineKeeper = quarantinekeeper.NewKeeper(appCodec, keys[quarantine.StoreKey], authtypes.NewModuleAddress(quarantine.ModuleName))

// Light client modules
clientKeeper := app.IBCKeeper.ClientKeeper
Expand Down
Loading
Loading