Skip to content

Commit c36c0ba

Browse files
committed
chore(bump_scarb): Updated scarb
1 parent 8e05116 commit c36c0ba

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
scarb 2.7.1
1+
scarb 2.8.2

Scarb.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ homepage = "https://github.com/astraly-labs/pragma-oracle/tree/main"
77
[lib]
88

99
[dependencies]
10-
starknet = "2.7.1"
10+
starknet = "2.8.2"

src/types.cairo

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ use starknet::{ContractAddress, ClassHash};
22

33
#[derive(Serde, Drop, Copy, PartialEq, starknet::Store)]
44
enum RequestStatus {
5-
UNINITIALIZED: (),
6-
RECEIVED: (),
7-
FULFILLED: (),
8-
CANCELLED: (),
9-
OUT_OF_GAS: (),
10-
REFUNDED: (),
5+
UNINITIALIZED,
6+
RECEIVED,
7+
FULFILLED,
8+
CANCELLED,
9+
OUT_OF_GAS,
10+
REFUNDED,
1111
}
1212

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

106106
#[derive(Drop, Copy, Serde)]
107107
enum SimpleDataType {
108-
SpotEntry: (),
109-
FutureEntry: (),
108+
SpotEntry,
109+
FutureEntry,
110110
// OptionEntry: (),
111111
}
112112

0 commit comments

Comments
 (0)