fix(core): minor fixes in hardcoded values

This commit is contained in:
smypmsa
2025-08-05 20:19:00 +00:00
parent 874d148777
commit 329266611c
4 changed files with 17 additions and 10 deletions
+2 -2
View File
@@ -209,7 +209,7 @@ class LetsBonkCurveManager(CurveManager):
return pool_data
def validate_pool_state_structure(self, pool_address: Pubkey) -> bool:
async def validate_pool_state_structure(self, pool_address: Pubkey) -> bool:
"""Validate that the pool state structure matches IDL expectations.
Args:
@@ -221,7 +221,7 @@ class LetsBonkCurveManager(CurveManager):
try:
# This would be used during development/testing to ensure
# the IDL parsing is working correctly
pool_state = self.get_pool_state(pool_address)
pool_state = await self.get_pool_state(pool_address)
required_fields = [
"virtual_base", "virtual_quote",