Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
bonedaddy committed Nov 20, 2022
1 parent 3d98465 commit 53a0777
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "anyix"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
authors = ["Bonedaddy"]
description = "lightweight instruction encoding for arbitrary fallback execution"
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub fn handle_anyix<'info>(
.collect(),
data: instruction_datas[idx as usize].clone(),
},
accounts,
&accounts[1..],
)?;
}
Ok(())
Expand Down Expand Up @@ -84,7 +84,7 @@ pub fn handle_anyix_unsafe<'info>(
.collect(),
data: instruction_datas[idx as usize].clone(),
},
&accounts[1..],
accounts,
)?;
}
Ok(())
Expand Down

0 comments on commit 53a0777

Please sign in to comment.