Skip to content

Commit

Permalink
Merge pull request #146 from BoostryJP/dev-2.1
Browse files Browse the repository at this point in the history
v2.1.2
  • Loading branch information
YoshihitoAso committed Jul 4, 2023
2 parents 8248008 + 7b52fbd commit e9e9e68
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions ibet-for-fin-network/general/genesis.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"eip155Block": 3,
"eip158Block": 3,
"byzantiumBlock": 3,
"constantinopleBlock": 999999999,
"petersburgBlock": 999999999,
"istanbulBlock": 999999999,
"berlinBlock": 999999999,
"constantinopleBlock": 88666675,
"petersburgBlock": 88666675,
"istanbulBlock": 88666675,
"berlinBlock": 88666675,
"istanbul": {
"epoch": 30000,
"policy": 0,
Expand Down
8 changes: 4 additions & 4 deletions ibet-for-fin-network/validator/genesis.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"eip155Block": 3,
"eip158Block": 3,
"byzantiumBlock": 3,
"constantinopleBlock": 999999999,
"petersburgBlock": 999999999,
"istanbulBlock": 999999999,
"berlinBlock": 999999999,
"constantinopleBlock": 88666675,
"petersburgBlock": 88666675,
"istanbulBlock": 88666675,
"berlinBlock": 88666675,
"istanbul": {
"epoch": 30000,
"policy": 0,
Expand Down
10 changes: 5 additions & 5 deletions local-network/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3'
services:
validator-0:
hostname: validator-0
image: ghcr.io/boostryjp/ibet-localnet/validator:v2.0.0
image: ghcr.io/boostryjp/ibet-localnet/validator:v2.1.0
volumes:
- /home/ubuntu/quorum_data/v0:/eth
environment:
Expand All @@ -24,7 +24,7 @@ services:
restart: always
validator-1:
hostname: validator-1
image: ghcr.io/boostryjp/ibet-localnet/validator:v2.0.0
image: ghcr.io/boostryjp/ibet-localnet/validator:v2.1.0
volumes:
- /home/ubuntu/quorum_data/v1:/eth
environment:
Expand All @@ -46,7 +46,7 @@ services:
restart: always
validator-2:
hostname: validator-2
image: ghcr.io/boostryjp/ibet-localnet/validator:v2.0.0
image: ghcr.io/boostryjp/ibet-localnet/validator:v2.1.0
volumes:
- /home/ubuntu/quorum_data/v2:/eth
environment:
Expand All @@ -68,7 +68,7 @@ services:
restart: always
validator-3:
hostname: validator-3
image: ghcr.io/boostryjp/ibet-localnet/validator:v2.0.0
image: ghcr.io/boostryjp/ibet-localnet/validator:v2.1.0
volumes:
- /home/ubuntu/quorum_data/v3:/eth
environment:
Expand All @@ -90,7 +90,7 @@ services:
restart: always
general-0:
hostname: general-0
image: ghcr.io/boostryjp/ibet-localnet/general:v2.0.0
image: ghcr.io/boostryjp/ibet-localnet/general:v2.1.0
volumes:
- /home/ubuntu/quorum_data/g0:/eth
environment:
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from eth_utils import to_checksum_address

from web3 import Web3
from web3.exceptions import BadFunctionCallOutput
from web3.exceptions import BadFunctionCallOutput, ContractLogicError
from web3.middleware import geth_poa_middleware
from web3.datastructures import AttributeDict

Expand Down Expand Up @@ -506,5 +506,5 @@ def test_error_4(self):
)
_function = getattr(contract_with_invalid_abi.functions, "notExistAttribute")
args = []
with pytest.raises(BadFunctionCallOutput):
with pytest.raises(ContractLogicError):
_ = _function(*args).call()

0 comments on commit e9e9e68

Please sign in to comment.