forked from LBRYCommunity/lbry-sdk
fix regular support create tests
This commit is contained in:
parent
1f94c53dd2
commit
03595052ce
1 changed files with 4 additions and 2 deletions
|
@ -1828,7 +1828,8 @@ class SupportCommands(CommandTestCase):
|
|||
# send a tip to the claim using account2
|
||||
tip = await self.out(
|
||||
self.daemon.jsonrpc_support_create(
|
||||
claim_id, '1.0', True, account2.id, 'wallet2', funding_account_ids=[account2.id])
|
||||
claim_id, '1.0', True, account_id=account2.id, wallet_id='wallet2',
|
||||
funding_account_ids=[account2.id])
|
||||
)
|
||||
await self.confirm_tx(tip['txid'])
|
||||
|
||||
|
@ -1859,7 +1860,8 @@ class SupportCommands(CommandTestCase):
|
|||
# send a support to the claim using account2
|
||||
support = await self.out(
|
||||
self.daemon.jsonrpc_support_create(
|
||||
claim_id, '2.0', False, account2.id, 'wallet2', funding_account_ids=[account2.id])
|
||||
claim_id, '2.0', False, account_id=account2.id, wallet_id='wallet2',
|
||||
funding_account_ids=[account2.id])
|
||||
)
|
||||
await self.confirm_tx(support['txid'])
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue