We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c75d78 commit 725f72cCopy full SHA for 725f72c
1 file changed
test-integration/schedulecommit/client/src/schedule_commit_context.rs
@@ -170,14 +170,17 @@ impl ScheduleCommitTestContext {
170
if self.user_seed == b"magic_schedule_commit" {
171
ixs.extend(self.committees.iter().map(|(player, committee)| {
172
init_account_instruction(
173
- self.payer_ephem.pubkey(),
+ self.payer_chain.pubkey(),
174
player.pubkey(),
175
*committee,
176
)
177
}));
178
} else {
179
- ixs.extend(self.committees.iter().map(|(payer, committee)| {
180
- init_order_book_instruction(payer.pubkey(), *committee)
+ ixs.extend(self.committees.iter().map(|(_, committee)| {
+ init_order_book_instruction(
181
182
+ *committee,
183
+ )
184
185
186
//// TODO (snawaz): currently the size of delegatable-account cannot be
0 commit comments