Example #1
0
 def compileSerpent(self, code):
     try:
         return self.compilers['serpent'](code)
     except KeyError:
         raise MethodNotFoundError()
Example #2
0
 def compileLLL(self, code):
     try:
         return self.compilers['lll'](code)
     except KeyError:
         raise MethodNotFoundError()
Example #3
0
 def compileSolidity(self, code):
     try:
         return self.compilers['solidity'](code)
     except KeyError:
         raise MethodNotFoundError()