Skip to content

Commit

Permalink
fix: fix bug in wallet FFI header file (#3075)
Browse files Browse the repository at this point in the history
PR fixes the type of an argument in the C header for wallet FFI.
  • Loading branch information
stringhandler committed Jul 14, 2021
2 parents def5de6 + 6367f33 commit a835032
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base_layer/wallet_ffi/wallet.h
Original file line number Diff line number Diff line change
Expand Up @@ -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*),
Expand Down

0 comments on commit a835032

Please sign in to comment.