Skip to content

Commit

Permalink
feat: add get network request
Browse files Browse the repository at this point in the history
  • Loading branch information
raindust committed Nov 14, 2023
1 parent 6dcd869 commit 01dda8d
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 @@ -274,3 +274,12 @@ pub struct GetStartupProofRequest;
#[doc(hidden)]
#[derive(Debug, Clone, Serialize, Deserialize, TypeId)]
pub struct GetStartupProofResponse(pub Option<String>);

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

#[doc(hidden)]
#[derive(Debug, Clone, Serialize, Deserialize, TypeId)]
pub struct GetNetworkResponse(pub String);

0 comments on commit 01dda8d

Please sign in to comment.