Skip to content

Commit

Permalink
Fix account history
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 18, 2024
1 parent 4bc994c commit b2b5767
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 b2b5767

Please sign in to comment.