We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5fc539 commit 4fab031Copy full SHA for 4fab031
lazer/publisher_sdk/proto/state.proto
@@ -47,7 +47,7 @@ message Publisher {
47
enum FeedState {
48
COMING_SOON = 0; // Default value
49
STABLE = 1;
50
- DEPRECATED = 2;
+ INACTIVE = 2;
51
}
52
53
// Static data for a feed.
lazer/sdk/rust/protocol/src/symbol_state.rs
@@ -8,15 +8,15 @@ use {
8
pub enum SymbolState {
9
ComingSoon,
10
Stable,
11
- Deprecated,
+ Inactive,
12
13
14
impl Display for SymbolState {
15
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
16
match self {
17
SymbolState::ComingSoon => write!(f, "coming_soon"),
18
SymbolState::Stable => write!(f, "stable"),
19
- SymbolState::Deprecated => write!(f, "deprecated"),
+ SymbolState::Inactive => write!(f, "inactive"),
20
21
22
0 commit comments