Skip to content

Commit

Permalink
feat: add get startup proof request
Browse files Browse the repository at this point in the history
  • Loading branch information
raindust committed Nov 12, 2023
1 parent 74079c5 commit 6dcd869
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions system-actors/src/env/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,3 +265,12 @@ pub struct IsMainNetRequest;
#[doc(hidden)]
#[derive(Debug, Clone, Serialize, Deserialize, TypeId)]
pub struct IsMainNetResponse(pub bool);

#[doc(hidden)]
#[derive(Debug, Clone, Serialize, Deserialize, TypeId, Priced)]
#[price(10000)]
pub struct GetStartupProofRequest;

#[doc(hidden)]
#[derive(Debug, Clone, Serialize, Deserialize, TypeId)]
pub struct GetStartupProofResponse(pub Option<String>);

0 comments on commit 6dcd869

Please sign in to comment.