Skip to content
This repository has been archived by the owner on Nov 15, 2021. It is now read-only.

Commit

Permalink
removed references to boa
Browse files Browse the repository at this point in the history
  • Loading branch information
localhuman committed Sep 28, 2017
1 parent 30e6200 commit d59e64c
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions prompt.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
from neo.Wallets.KeyPair import KeyPair
from neo.Network.NodeLeader import NodeLeader
from neo.Prompt.Commands.Invoke import InvokeContract,TestInvokeContract,test_invoke,test_deploy_and_invoke
from neo.Prompt.Commands.BuildNRun import BuildAndRun,LoadAndRun
from neo.Prompt.Commands.LoadSmartContract import LoadContract,GatherContractDetails,GatherLoadedContractParams
from neo.Prompt.Utils import get_arg
from neo import Settings
Expand All @@ -40,7 +39,6 @@
from prompt_toolkit.contrib.completers import WordCompleter
from prompt_toolkit.history import InMemoryHistory

from boa.boa import Compiler

logname = 'prompt.log'
logging.basicConfig(
Expand Down Expand Up @@ -280,12 +278,6 @@ def do_import(self, arguments):
return


def do_build(self, arguments):
BuildAndRun(arguments, self.Wallet)

def do_load_n_run(self, arguments):
LoadAndRun(arguments, self.Wallet)

def do_export(self, arguments):
item = get_arg(arguments)

Expand Down Expand Up @@ -782,10 +774,6 @@ def run(self):
self.do_create(arguments)
elif command == 'open':
self.do_open(arguments)
elif command == 'build':
self.do_build(arguments)
elif command == 'load_run':
self.do_load_n_run(arguments)
elif command == 'import':
self.do_import(arguments)
elif command == 'export':
Expand Down

0 comments on commit d59e64c

Please sign in to comment.