Skip to content

Commit

Permalink
sol: do chronological order ascending just to make tests consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
hodgerpodger committed Jan 11, 2025
1 parent 6ea2c42 commit 4f9bdcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/staketaxcsv/sol/staking_rewards_flipside.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ def fetch_rewards_flipside(staking_address):
WHERE
STAKE_PUBKEY = '{staking_address}'
ORDER BY
BLOCK_TIMESTAMP DESC
LIMIT 1000;
BLOCK_TIMESTAMP ASC
LIMIT 5000;
"""

logging.info("Querying Flipside Crypto for staking rewards...")
Expand Down

0 comments on commit 4f9bdcf

Please sign in to comment.