From 7844356c6d84a89b46674c136ff63c09f67ddadc Mon Sep 17 00:00:00 2001 From: Boolafish Date: Sun, 1 Jul 2018 19:19:20 +0900 Subject: [PATCH] Ganache stdout to PIPE, and minor fix on README --- README.md | 2 +- integration_tests/features/environment.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 04b6c30..528c391 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/integration_tests/features/environment.py b/integration_tests/features/environment.py index 00eb2d3..6900cdd 100644 --- a/integration_tests/features/environment.py +++ b/integration_tests/features/environment.py @@ -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 @@ -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():