Skip to content

Commit

Permalink
Merge branch 'master' into core-jumptable
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim8y committed Feb 15, 2024
2 parents 6a395e4 + fd3d68d commit 37df5ee
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Neo/NeoSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,16 @@ public void EnsureStopped(IActorRef actor)
inbox.Receive(TimeSpan.FromMinutes(5));
}

/// <summary>
/// Loads an <see cref="IStore"/> at the specified path.
/// </summary>
/// <param name="path">The path of the storage.</param>
/// <returns>The loaded <see cref="IStore"/>.</returns>
public IStore LoadStore(string path)
{
return StoreFactory.GetStore(store.GetType().Name, path);
}

/// <summary>
/// Resumes the startup process of <see cref="LocalNode"/>.
/// </summary>
Expand Down

0 comments on commit 37df5ee

Please sign in to comment.