We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
godoc
CallType
1 parent f33c339 commit 7a5c68fCopy full SHA for 7a5c68f
core/vm/contracts.libevm.go
@@ -57,10 +57,10 @@ type evmCallArgs struct {
57
type CallType OpCode
58
59
const (
60
- Call = CallType(CALL)
61
- CallCode = CallType(CALLCODE)
62
- DelegateCall = CallType(DELEGATECALL)
63
- StaticCall = CallType(STATICCALL)
+ Call CallType = CallType(CALL)
+ CallCode CallType = CallType(CALLCODE)
+ DelegateCall CallType = CallType(DELEGATECALL)
+ StaticCall CallType = CallType(STATICCALL)
64
)
65
66
func (t CallType) isValid() bool {
0 commit comments