File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
base_layer/wallet_ffi/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ use tari_common::{
120120use tari_common_sqlite::connection::DbConnectionUrl;
121121use tari_common_types::{
122122 emoji::{emoji_set, EMOJI},
123- tari_address::{ TariAddress, TariAddressError} ,
123+ tari_address::TariAddress,
124124 transaction::{TransactionDirection, TransactionStatus, TxId},
125125 types::{
126126 ComAndPubSignature,
@@ -1975,7 +1975,7 @@ pub unsafe extern "C" fn emoji_id_to_tari_address(
19751975 return ptr::null_mut();
19761976 },
19771977 };
1978- match TariAddress::from_emoji_string(cstring) {
1978+ match TariAddress::from_emoji_string(& cstring) {
19791979 Ok(address) => Box::into_raw(Box::new(address)),
19801980 Err(_) => {
19811981 *error_out = LibWalletError::from(InterfaceError::InvalidEmojiId).code;
You can’t perform that action at this time.
0 commit comments