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:
Ivan Boldyrev 2023-12-07 15:29:26 +04:00 committed by GitHub
parent a5b520d6fe
commit 2c78fd5f7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 3 deletions

View File

@ -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

View File