Skip to content

Commit

Permalink
Fix account history (#353)
Browse files Browse the repository at this point in the history
This small change will allow transaction history to be displayed on both
the current version and on agave
  • Loading branch information
Krishnacore authored Jul 31, 2024
1 parent b7f6ac0 commit 4059a5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/providers/accounts/history.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ async function fetchAccountHistory(
let history;
try {
const connection = new Connection(url);
const fetched = await connection.getConfirmedSignaturesForAddress2(pubkey, options);
const fetched = await connection.getSignaturesForAddress(pubkey, options);
history = {
fetched,
foundOldest: fetched.length < options.limit,
Expand Down

0 comments on commit 4059a5f

Please sign in to comment.