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 Oct 5, 2017
1 parent 7bc88a9 commit 658e858
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 95 deletions.
89 changes: 0 additions & 89 deletions neo/Prompt/Commands/BuildNRun.py

This file was deleted.

11 changes: 5 additions & 6 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.Prompt.Notify import SubscribeNotifications
Expand All @@ -41,7 +40,7 @@
from prompt_toolkit.contrib.completers import WordCompleter
from prompt_toolkit.history import InMemoryHistory

from boa.boa import Compiler
#from boa.boa import Compiler

logname = 'prompt.log'
logging.basicConfig(
Expand Down Expand Up @@ -282,11 +281,11 @@ def do_import(self, arguments):
return


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

def do_load_n_run(self, arguments):
LoadAndRun(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

0 comments on commit 658e858

Please sign in to comment.