chore: cleanup + artifacts

This commit is contained in:
agureev
2026-08-14 12:36:20 +04:00
parent 26a24e9a2a
commit 2d7e644be2
21 changed files with 16 additions and 5 deletions
Generated
+1
View File
@@ -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.
+2
View File
@@ -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 }
+13 -5
View File
@@ -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.