Skip to content

Commit 2528cf0

Browse files
committed
make fields in ForwarderCalldata public
1 parent 017ce10 commit 2528cf0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aarm/src/action.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ pub struct Action {
2626

2727
#[derive(Clone, Debug, Deserialize, Serialize)]
2828
pub struct ForwarderCalldata {
29-
untrusted_forwarder: [u8; 20],
30-
input: Vec<u8>,
31-
output: Vec<u8>,
29+
pub untrusted_forwarder: [u8; 20],
30+
pub input: Vec<u8>,
31+
pub output: Vec<u8>,
3232
}
3333

3434
impl Action {

0 commit comments

Comments
 (0)