mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-04 06:43:07 +00:00
Constrain memory channels in JUMPDEST (#844)
This commit is contained in:
parent
249e50ebcb
commit
1732239a00
@ -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 {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user