Skip to content

Commit ce33bd3

Browse files
committed
test fixture update
1 parent a20232f commit ce33bd3

File tree

5 files changed

+7
-0
lines changed

5 files changed

+7
-0
lines changed
56.7 KB
Binary file not shown.
9.58 MB
Binary file not shown.
95.3 KB
Binary file not shown.

integration_tests/tests/fixtures/test_builder.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1077,14 +1077,18 @@ impl TestBuilder {
10771077
) -> TestResult<()> {
10781078
let mut stake_pool_client = self.stake_pool_client();
10791079

1080+
println!("Adding routers...");
10801081
self.add_routers_for_test_ncn(test_ncn).await?;
10811082

1083+
println!("Updating stake pool balance...");
10821084
stake_pool_client
10831085
.update_stake_pool_balance(pool_root)
10841086
.await?;
10851087

1088+
println!("Routing base rewards...");
10861089
self.route_in_base_rewards_for_test_ncn(test_ncn, rewards, pool_root)
10871090
.await?;
1091+
println!("Routing test ncn rewards...");
10881092
self.route_in_ncn_rewards_for_test_ncn(test_ncn, pool_root)
10891093
.await?;
10901094

integration_tests/tests/fixtures/tip_router_client.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,9 @@ impl TipRouterClient {
157157
let config_pda =
158158
NcnConfig::find_program_address(&jito_tip_router_program::id(), &ncn_pubkey).0;
159159
let config = self.banks_client.get_account(config_pda).await?.unwrap();
160+
println!("config data: {:?}", config.data);
161+
println!("config data length: {}", config.data.len());
162+
println!("Expected length: {}", NcnConfig::SIZE);
160163
Ok(*NcnConfig::try_from_slice_unchecked(config.data.as_slice()).unwrap())
161164
}
162165

0 commit comments

Comments
 (0)