Skip to content

Commit

Permalink
Merge pull request omgnetwork#64 from boolafish/small_fix
Browse files Browse the repository at this point in the history
Some minor fixes
  • Loading branch information
bun919tw authored Jul 1, 2018
2 parents da856a5 + 7844356 commit 46231cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ python
>>> c.start_exit('0x08d92dca9038ea9433254996a2d4f08d43be8227', 1693390459388381052156419331572168595237271043726428428352746834777341368960, 1, 2)
```

(Challenge double spending)
(Challenge spent coin)
```
python
>>> from plasma_cash.dependency_config import container
Expand Down
4 changes: 2 additions & 2 deletions integration_tests/features/environment.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
import signal
import time
from subprocess import Popen
from subprocess import Popen, PIPE

from plasma_cash.root_chain.deployer import Deployer

Expand All @@ -26,7 +26,7 @@ def after_scenario(context, step):


def spin_up_root_chain():
return Popen(['ganache-cli', '-m=plasma_cash'], preexec_fn=os.setsid)
return Popen(['ganache-cli', '-m=plasma_cash'], preexec_fn=os.setsid, stdout=PIPE)


def deploy_contracts():
Expand Down

0 comments on commit 46231cb

Please sign in to comment.