Skip to content

Commit

Permalink
Merge pull request #40 from beefyfinance/remove-hardcoded-fix
Browse files Browse the repository at this point in the history
Remove hardcoded fix
  • Loading branch information
prevostc authored Sep 23, 2024
2 parents d53ad8e + 6d6ecb5 commit 2c67eed
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions src/queries/InvestorTimeline.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,6 @@ query InvestorTimeline(
where: {
investor: $investor_address
totalBalance_gt: 0
# these vaults are not properly indexed and cause errors
classic_not_in: ["0xbbdeaaa32cbce61e0a2809edcae8d1857c55a5dd"]
}
) {
...InvestorTimelineClassicPosition
Expand All @@ -175,8 +173,6 @@ query InvestorTimeline(
orderDirection: asc
where: {
investor: $investor_address
# these vaults are not properly indexed and cause errors
classic_not_in: ["0xbbdeaaa32cbce61e0a2809edcae8d1857c55a5dd"]
type_in: [
VAULT_DEPOSIT
VAULT_WITHDRAW
Expand Down
2 changes: 0 additions & 2 deletions src/queries/VaultsHarvests.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ query VaultsHarvests($since: BigInt!, $first: Int = 1000, $skip: Int = 0) {
skip: $skip
where: {
lifecycle_not: INITIALIZING
# these vaults are not properly indexed and cause errors
id_not_in: ["0xbbdeaaa32cbce61e0a2809edcae8d1857c55a5dd"]
}
) {
vaultAddress: id
Expand Down
2 changes: 0 additions & 2 deletions src/queries/VaultsHarvestsFiltered.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ query VaultsHarvestsFiltered(
classics(first: $first, skip: $skip, where: {
lifecycle_not: INITIALIZING,
id_in: $vaults,
# these vaults are not properly indexed and cause errors
id_not_in: ["0xbbdeaaa32cbce61e0a2809edcae8d1857c55a5dd"]
}) {
vaultAddress: id
underlyingToken {
Expand Down

0 comments on commit 2c67eed

Please sign in to comment.