Skip to content

Commit

Permalink
feat: add wallet_id to get_transactions call
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Sep 9, 2022
1 parent 685ecf3 commit c3651a4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/datalayer/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,10 @@ const waitForAllTransactionsToConfirm = async () => {
const hasUnconfirmedTransactions = async () => {
const options = {
url: `${rpcUrl}/get_transactions`,
body: JSON.stringify({}),
body: JSON.stringify({
wallet_id: '1',
sort_key: 'RELEVANCE',
}),
};

const response = await request(Object.assign({}, getBaseOptions(), options));
Expand Down

0 comments on commit c3651a4

Please sign in to comment.