Skip to content
Snippets Groups Projects
Unverified Commit 9408c5a9 authored by Benjamin Bollen's avatar Benjamin Bollen
Browse files

vm: start by including DELEGATECALL in the switch

parent 38568d4a
No related branches found
No related tags found
No related merge requests found
......@@ -771,7 +771,7 @@ func (vm *VM) call(caller, callee *Account, code, input []byte, value int64, gas
stack.Push(newAccount.Address)
}
case CALL, CALLCODE: // 0xF1, 0xF2
case CALL, CALLCODE, DELEGATECALL: // 0xF1, 0xF2, 0xF4
if !HasPermission(vm.appState, callee, ptypes.Call) {
return nil, ErrPermission{"call"}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment