mirror of
https://github.com/fluencelabs/aquavm
synced 2025-04-24 14:52:15 +00:00
fix(avm-server): make avm_server::RunnerError a public type (#764)
* fix(avm-server): make avm_server::RunnerError a public type * Make RunnerResult public too * Remove stale submodule dir * gitkeep `benches/performance_metering`
This commit is contained in:
parent
a5b520d6fe
commit
2c78fd5f7a
@ -58,5 +58,5 @@ pub type AVMDataStore<E> = Box<dyn DataStore<Error = E> + Send + Sync + 'static>
|
||||
|
||||
pub type AVMResult<T, E> = std::result::Result<T, AVMError<E>>;
|
||||
|
||||
pub(crate) use errors::RunnerError;
|
||||
pub(crate) type RunnerResult<T> = std::result::Result<T, RunnerError>;
|
||||
pub use errors::RunnerError;
|
||||
pub type RunnerResult<T> = std::result::Result<T, RunnerError>;
|
||||
|
@ -1 +0,0 @@
|
||||
Subproject commit 39b6445c0fc9db7ad74e176dbcb54d480279979e
|
0
benches/performance_metering/.gitkeep
Normal file
0
benches/performance_metering/.gitkeep
Normal file
Loading…
x
Reference in New Issue
Block a user