Skip to content
This repository has been archived by the owner on Jun 11, 2022. It is now read-only.

Commit

Permalink
adapt transaction test to the new create_wallet signature
Browse files Browse the repository at this point in the history
  • Loading branch information
ecioppettini committed Mar 22, 2019
1 parent 0a38428 commit 753aff9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cardano-c/test/test_transaction.c
Expand Up @@ -20,11 +20,12 @@ static uint8_t txid[32] = {0};

void setUp()
{
wallet = cardano_wallet_new(
cardano_result wallet_rc = cardano_wallet_new(
static_wallet_entropy,
sizeof(static_wallet_entropy),
"password",
strlen("password"));
strlen("password"),
&wallet);

account = cardano_account_create(wallet, "main", 0);

Expand Down

0 comments on commit 753aff9

Please sign in to comment.