Skip to content

Commit

Permalink
⬆️ bump scarb 2.8.2 (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
akhercha authored Sep 16, 2024
1 parent 8e05116 commit 86d7ccd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
scarb 2.7.1
scarb 2.8.2
2 changes: 1 addition & 1 deletion Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ homepage = "https://github.com/astraly-labs/pragma-oracle/tree/main"
[lib]

[dependencies]
starknet = "2.7.1"
starknet = "2.8.2"
16 changes: 8 additions & 8 deletions src/types.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ use starknet::{ContractAddress, ClassHash};

#[derive(Serde, Drop, Copy, PartialEq, starknet::Store)]
enum RequestStatus {
UNINITIALIZED: (),
RECEIVED: (),
FULFILLED: (),
CANCELLED: (),
OUT_OF_GAS: (),
REFUNDED: (),
UNINITIALIZED,
RECEIVED,
FULFILLED,
CANCELLED,
OUT_OF_GAS,
REFUNDED,
}

#[derive(Serde, Drop, Copy, starknet::Store)]
Expand Down Expand Up @@ -105,8 +105,8 @@ enum PossibleEntryStorage {

#[derive(Drop, Copy, Serde)]
enum SimpleDataType {
SpotEntry: (),
FutureEntry: (),
SpotEntry,
FutureEntry,
// OptionEntry: (),
}

Expand Down

0 comments on commit 86d7ccd

Please sign in to comment.