Skip to content

Commit

Permalink
Merge pull request #2068 from MichelSantos/2067
Browse files Browse the repository at this point in the history
Tests: PR for #2067
  • Loading branch information
oxarbitrage authored Nov 26, 2019
2 parents a9bb824 + c17fd10 commit de7d43f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/cli/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1007,6 +1007,10 @@ BOOST_AUTO_TEST_CASE( cli_multisig_transaction )
throw;
}
app1->shutdown();
app1.reset();
// Intentional delay after app1->shutdown
std::cout << "cli_multisig_transaction conclusion: Intentional delay" << std::endl;
fc::usleep(fc::seconds(1));
}

graphene::wallet::plain_keys decrypt_keys( const std::string& password, const vector<char>& cipher_keys )
Expand Down Expand Up @@ -1231,6 +1235,10 @@ BOOST_AUTO_TEST_CASE( cli_create_htlc )
throw;
}
app1->shutdown();
app1.reset();
// Intentional delay after app1->shutdown
std::cout << "cli_create_htlc conclusion: Intentional delay" << std::endl;
fc::usleep(fc::seconds(1));
}

static string encapsulate( const graphene::wallet::signed_message& msg )
Expand Down

0 comments on commit de7d43f

Please sign in to comment.