Skip to content

Commit

Permalink
feat: override user-configured jsonrpc batch size for tenderly (#678)
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Nov 18, 2023
1 parent 9653789 commit 5a54b9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pony>=0.7.16
sqlalchemy>=1.4.41
sentry-sdk==1.27.1
pytest-bdd>=5.0.0
dank_mids==4.20.69
dank_mids==4.20.71
eth_retry>=0.1.19
eth-hash[pysha3]
ez-a-sync==0.12.3
Expand Down
2 changes: 1 addition & 1 deletion yearn/special.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ async def apy(self, _: ApySamples) -> Apy:
yvboost_eth_pool = [pool for pool in data if pool["identifier"] == "yvboost-eth"][0]
apy = yvboost_eth_pool["apy"] / 100.
points = ApyPoints(apy, apy, apy)
block = chain.height
block = await dank_w3.eth.block_number
inception_block = await contract_creation_block_async(str(self.vault))
blocks = ApyBlocks(block, block, block, inception_block)
return Apy("yvecrv-jar", apy, apy, ApyFees(), points=points, blocks=blocks)
Expand Down

0 comments on commit 5a54b9d

Please sign in to comment.