ameliatastic / seahorse-lang

Write Anchor-compatible Solana programs in Python
Apache License 2.0
313 stars 43 forks source link

Fix conflict version #109

Open maycuatroi opened 4 months ago

maycuatroi commented 4 months ago

Description

I have checked and discovered that the issue lies in the [dependencies] section, where a library is missing. Additionally, one of the libraries is using an outdated version.

Before:

[dependencies]
anchor-lang = "0.29.0"
anchor-spl = "0.29.0"
pyth-sdk-solana = { version = "0.7.0", optional = true }

After

[dependencies]
anchor-lang = "0.29.0"
anchor-spl = "0.29.0"
spl-associated-token-account = "2.3.1"
pyth-sdk-solana = { version = "0.10.1", optional = true }

Test result

image

Related issue: