Skip to content
Merged
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 @@ -26,7 +26,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
targets: wasm32-unknown-unknown
Expand Down
235 changes: 0 additions & 235 deletions MONITORING.md

This file was deleted.

32 changes: 0 additions & 32 deletions PR-d.md

This file was deleted.

46 changes: 0 additions & 46 deletions contract/BENCHMARKS.md

This file was deleted.

7 changes: 4 additions & 3 deletions contract/contracts/predifi-contract/src/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
use super::*;
use crate::test_utils::TokenTestContext;
use soroban_sdk::{
symbol_short,
testutils::{Address as _, Ledger},
Address, Env, String,
};
Expand Down Expand Up @@ -94,7 +95,7 @@ fn test_full_market_lifecycle() {
&1i128,
&0i128,
&0i128,
&Symbol::new(&env, "tech"),
&symbol_short!("Tech"),
);

// 2. Place Predictions
Expand Down Expand Up @@ -169,7 +170,7 @@ fn test_multi_user_betting_and_balance_verification() {
&1i128,
&0i128,
&0i128,
&Symbol::new(&env, "tech"),
&symbol_short!("Tech"),
);

// Bets:
Expand Down Expand Up @@ -238,7 +239,7 @@ fn test_market_resolution_multiple_winners() {
&1i128,
&0i128,
&0i128,
&Symbol::new(&env, "tech"),
&symbol_short!("Tech"),
);

// Bets:
Expand Down
Loading