wormhole-foundation / example-liquidity-layer

Apache License 2.0
13 stars 12 forks source link

solana: document unwrap #83

Open a5-pickle opened 7 months ago

a5-pickle commented 7 months ago

Consider adding this clippy rule:

unwrap_used = "deny"

We need to make sure all unwrapping is safe and will be safe going forward. Adding this clippy rule would help force us to document every time we unwrap.

Related to #80.