Skip to content

Commit

Permalink
Update crates/core/src/lib.rs
Browse files Browse the repository at this point in the history
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
lgalabru and coderabbitai[bot] authored Feb 1, 2025
1 parent fee402a commit 50fafbf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions crates/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ pub use litesvm;
pub use solana_rpc_client;
pub use solana_sdk;

pub async fn start_simnet() {
simnet::start().await;
pub async fn start_simnet() -> Result<(), Box<dyn std::error::Error>> {
simnet::start().await?;
Ok(())
}

0 comments on commit 50fafbf

Please sign in to comment.