Skip to content

Commit

Permalink
fix: correct parameter 'unnused' to 'unused' in txStatus
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasbenary committed Dec 27, 2024
1 parent 6b410bf commit 415b070
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/wallets/near.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export class Wallet {
const provider = new providers.JsonRpcProvider({ url: network.nodeUrl });

// Retrieve transaction result from the network
const transaction = await provider.txStatus(txhash, 'unnused');
const transaction = await provider.txStatus(txhash, 'unused');
return providers.getTransactionLastResult(transaction);
};

Expand Down

0 comments on commit 415b070

Please sign in to comment.