Constrain memory channels in JUMPDEST (#844)

This commit is contained in:
Jacqueline Nabaglo 2022-12-11 11:02:19 -08:00 committed by GitHub
parent 249e50ebcb
commit 1732239a00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,9 +71,13 @@ const STACK_BEHAVIORS: OpsColumnsView<Option<StackBehavior>> = OpsColumnsView {
pushes: true,
disable_other_channels: true,
}),
gas: None, // TODO
jumpdest: None, // TODO
push: None, // TODO
gas: None, // TODO
jumpdest: Some(StackBehavior {
num_pops: 0,
pushes: false,
disable_other_channels: true,
}),
push: None, // TODO
dup: None,
swap: None,
get_context: Some(StackBehavior {