From 6367f339063c45c619fda9c3b59222701fbcd9ea Mon Sep 17 00:00:00 2001 From: Philip Robinson Date: Fri, 9 Jul 2021 11:47:31 +0200 Subject: [PATCH] Fix bug in wallet FFI header file PR fixes the type of an argument in the C header for wallet FFI. --- base_layer/wallet_ffi/wallet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base_layer/wallet_ffi/wallet.h b/base_layer/wallet_ffi/wallet.h index 8b89597573..9dcea92d6f 100644 --- a/base_layer/wallet_ffi/wallet.h +++ b/base_layer/wallet_ffi/wallet.h @@ -462,7 +462,7 @@ struct TariWallet *wallet_create(struct TariWalletConfig *config, unsigned int num_rolling_log_files, unsigned int size_per_log_file_bytes, const char *passphrase, - const char *seed_words, + struct TariSeedWords *seed_words, void (*callback_received_transaction)(struct TariPendingInboundTransaction*), void (*callback_received_transaction_reply)(struct TariCompletedTransaction*), void (*callback_received_finalized_transaction)(struct TariCompletedTransaction*),