pyth-crosschain/solana/solitaire/program
Reisen 7f1c7ec62f solitaire: expose entrypoint and relax lifetimes
The current lifetimes 'a/'b restrict the &data and &program_id lifetimes which makes the
entrypoint unusable in solana_test_program's processor!() harness, which expects the more
relaxed (but equivelent for us) type of:

    fn processor<'a, 'b: 'a, 'c, 'd>(
      program_id: &'c Pubkey,
      accounts:   &'a [AccountInfo<'b>],
      data:       &'d [u8]
    )

It has no effect on our current programs.

Change-Id: Ia657462141165064c629fdff02b5ec451aab50f0
2022-01-14 13:09:12 +00:00
..
src solitaire: expose entrypoint and relax lifetimes 2022-01-14 13:09:12 +00:00
Cargo.toml Initial pyth2wormhole skeleton with access verification 2021-07-20 15:05:00 +00:00
Xargo.toml Restructure workspace 2021-06-21 10:24:52 +02:00