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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ jobs:
uses: actions/checkout@v4

- name: Run k6 Load Test
uses: grafana/k6-action@v0.5.0
uses: grafana/k6-action@v0.5.1
with:
filename: load-tests/run.js
flags: --env SCENARIO=subscription
Expand Down
1 change: 1 addition & 0 deletions app/screens/DisputeManagementScreen.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from '../../src/screens/DisputeManagementScreen';
16 changes: 16 additions & 0 deletions contracts/dispute/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "subtrackr-dispute"
version = "0.1.0"
edition = "2021"

[dependencies]
soroban-sdk = { workspace = true }
subtrackr-types = { path = "../types" }

[lib]
crate-type = ["cdylib", "rlib"]

[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
Loading
Loading