Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

Update eth tester dependency #304

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,22 @@ virtualenv -p python3 env
pip install -e microraiden
```

* if necessary to complete the build, install latest OpenSSL on MacOS

```
brew update
brew upgrade openssl
```

* additional dependency-related build steps on MacOS as necessary:

```
export CPPFLAGS="-I/usr/local/opt/openssl/include $CPPFLAGS"
brew install automake
export LDFLAGS="-L/usr/local/opt/openssl/lib"
brew install libtool
```

* install the WebUI component for the paywall examples

Note that while the `RaidenMicroTransferChannels` contract supports multiple open channels between a sender and a receiver, the WebUI component only supports one.
Expand Down
2 changes: 1 addition & 1 deletion microraiden/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-r requirements.txt
pytest
ethereum-tester
eth-tester
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please revert this change. There are some compatibility issues in the ethereum libraries we are using and we need to fix these before we can use new eth-tester and others.

mock
requests_mock