parent
e615f56cdd
commit
76f8549ae3
@ -0,0 +1,12 @@ |
||||
'use strict' |
||||
import { ValueType } from './ValueType' |
||||
|
||||
export class FunctionType extends ValueType { |
||||
constructor (type, stateDefinitions, contractName, location) { |
||||
super(1, 8, 'function') |
||||
} |
||||
|
||||
decodeValue (value) { |
||||
return value |
||||
} |
||||
} |
Loading…
Reference in new issue