mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-08-25 03:11:21 +00:00
chore: cleanup + artifacts
This commit is contained in:
Generated
+1
@@ -8038,6 +8038,7 @@ dependencies = [
|
||||
"faucet_core",
|
||||
"lee",
|
||||
"lee_core",
|
||||
"pinata_core",
|
||||
"ping_core",
|
||||
"risc0-zkvm",
|
||||
"token_core",
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -113,6 +113,7 @@ programs = [
|
||||
"dep:bridge_lock_core",
|
||||
"dep:wrapped_token_core",
|
||||
"dep:ping_core",
|
||||
"dep:pinata_core",
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
@@ -132,6 +133,7 @@ cross_zone_outbox_core = { workspace = true, optional = true }
|
||||
bridge_lock_core = { workspace = true, optional = true }
|
||||
wrapped_token_core = { workspace = true, optional = true }
|
||||
ping_core = { workspace = true, optional = true }
|
||||
pinata_core = { workspace = true, optional = true }
|
||||
|
||||
amm_program = { path = "amm", optional = true }
|
||||
associated_token_account_program = { path = "associated_token_account", optional = true }
|
||||
|
||||
@@ -1570,7 +1570,11 @@ async fn block_production_aborts_when_clock_account_data_is_corrupted() {
|
||||
/// accounts initialized, and the clock advanced to `clock_timestamp` so that reads of the
|
||||
/// `CLOCK_01` account observe it.
|
||||
fn state_with_clock_and_program(program: Program, clock_timestamp: u64) -> V03State {
|
||||
let mut state = V03State::new().with_programs([programs::clock(), program]);
|
||||
let mut state = V03State::new().with_programs([
|
||||
programs::clock(),
|
||||
program,
|
||||
programs::authenticated_transfer(),
|
||||
]);
|
||||
for clock_id in system_accounts::clock_account_ids() {
|
||||
state.force_insert_account(clock_id, system_accounts::clock_account());
|
||||
}
|
||||
@@ -1744,8 +1748,10 @@ fn pinata_cooldown_claim_succeeds_after_cooldown() {
|
||||
let block_timestamp = genesis_timestamp + cooldown_ms;
|
||||
let mut state = state_with_clock_and_program(test_programs::pinata_cooldown(), block_timestamp);
|
||||
|
||||
let prize_pda_id =
|
||||
AccountId::for_public_pda(&test_programs::pinata_cooldown().id(), &PdaSeed::new([0; 32]));
|
||||
let prize_pda_id = AccountId::for_public_pda(
|
||||
&test_programs::pinata_cooldown().id(),
|
||||
&PdaSeed::new([0; 32]),
|
||||
);
|
||||
|
||||
// The winner must be a non-default account so the program may credit it without claiming.
|
||||
state.force_insert_account(
|
||||
@@ -1803,8 +1809,10 @@ fn pinata_cooldown_claim_fails_during_cooldown() {
|
||||
let block_timestamp = genesis_timestamp + 100;
|
||||
let mut state = state_with_clock_and_program(test_programs::pinata_cooldown(), block_timestamp);
|
||||
|
||||
let prize_pda_id =
|
||||
AccountId::for_public_pda(&test_programs::pinata_cooldown().id(), &PdaSeed::new([0; 32]));
|
||||
let prize_pda_id = AccountId::for_public_pda(
|
||||
&test_programs::pinata_cooldown().id(),
|
||||
&PdaSeed::new([0; 32]),
|
||||
);
|
||||
|
||||
state.force_insert_account(
|
||||
winner_id,
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user