Merge pull request #108 from yanCode/fix/creator-parse

fix(learning examples): use STRUCT_2 to parse creator
This commit is contained in:
Anton
2025-06-09 09:03:10 +02:00
committed by GitHub
@@ -71,7 +71,7 @@ class BondingCurveState:
self.__dict__.update(parsed)
else:
parsed = self._STRUCT_1.parse(data[8:])
parsed = self._STRUCT_2.parse(data[8:])
self.__dict__.update(parsed)
# Convert raw bytes to Pubkey for creator field
if hasattr(self, 'creator') and isinstance(self.creator, bytes):