[SON-341, SON-342] Fix issue with deposits number (#339)
Co-authored-by: gladcow <s.gladkov@pbsa.info>
This commit is contained in:
parent
bd1bd842ce
commit
c345369c67
1 changed files with 2 additions and 3 deletions
|
|
@ -89,10 +89,9 @@ public:
|
|||
|
||||
// check deposits are here
|
||||
auto deposits = fixture_.con.wallet_api_ptr->get_vesting_balances(account_name);
|
||||
BOOST_CHECK(deposits.size() == 2);
|
||||
BOOST_CHECK(deposits.size() >= 2);
|
||||
|
||||
create_tx = fixture_.con.wallet_api_ptr->create_son(account_name, son_url,
|
||||
deposits[0].id, deposits[1].id,
|
||||
create_tx = fixture_.con.wallet_api_ptr->try_create_son(account_name, son_url,
|
||||
sidechain_public_keys,
|
||||
true);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue