Skip to content

Commit

Permalink
Update lib.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
schwartz-concordium committed Jan 26, 2024
1 parent 927d420 commit 702e52a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust-bindings/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use anyhow::Result;
use concordium_contracts_common::{
schema::{Type, VersionedModuleSchema, VersionedSchemaError},
schema_json::ToJsonError,
Cursor
Cursor,
};
use serde_json::to_vec;
use std::{ffi::CStr, os::raw::c_char};
Expand Down Expand Up @@ -206,7 +206,7 @@ pub enum FFIError {
#[error("encountered string which wasn't utf8 encoded")]
Utf8Error,
#[error(transparent)]
VersionedSchemaError(#[from]VersionedSchemaError),
VersionedSchemaError(#[from] VersionedSchemaError),
}

impl FFIError {
Expand Down

0 comments on commit 702e52a

Please sign in to comment.