Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #1338

Merged
merged 1 commit into from
Jul 31, 2019
Merged
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
4 changes: 2 additions & 2 deletions docs/contracts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -743,13 +743,13 @@ Utils
'_transactionData': b'',
'_debatingPeriod': 604800,
'_newCurator': True})

ContractCaller
--------------

.. py:class:: ContractCaller

The :py:class:``ContractCaller`` class provides an API to call functions in a contract. This class
The ``ContractCaller`` class provides an API to call functions in a contract. This class
is not to be used directly, but instead through ``Contract.caller``.

There are a number of different ways to invoke the ``ContractCaller``.
Expand Down
14 changes: 7 additions & 7 deletions docs/v5_migration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ project depends on Web3.py v4, then you'll probably need to make some changes.

Here are the most common required updates:

Python 3.5 no longer supported.
-------------------------------
Python 3.5 no longer supported
------------------------------

You will need to upgrade to either Python 3.6 or 3.7

``eth-abi`` v1 no longer supported
----------------------------------

You will need to upgrade the ``eth-abi`` dependency to v2 or higher.
You will need to upgrade the ``eth-abi`` dependency to v2

Changes to base API
-------------------
Expand All @@ -27,7 +27,7 @@ JSON-RPC Updates

In v4, JSON-RPC calls that looked up transactions or blocks and
didn't find them, returned ``None``. Now if a transaction or
block is not found, a `BlockNotFound` or a `TransactionNotFound`
block is not found, a ``BlockNotFound`` or a ``TransactionNotFound``
error will be thrown as appropriate. This applies to the
following web3 methods:

Expand Down Expand Up @@ -116,9 +116,9 @@ Similarly, instances of ``web3.providers`` have been changed to
Testnet Changes
~~~~~~~~~~~~~~~

- Web3.py will no longer automatically look up a testnet connection
in IPCProvider. Something like ``from web3.auto.ropsten import w3``
should be used instead.
Web3.py will no longer automatically look up a testnet connection
in IPCProvider. Something like ``from web3.auto.infura.ropsten import w3``
should be used instead.

ENS
---
Expand Down