Skip to content

Commit

Permalink
Merge pull request #242 from hyperledger-labs/remove-truffle
Browse files Browse the repository at this point in the history
Remove truffle

Signed-off-by: Jun Kimura <[email protected]>
  • Loading branch information
bluele authored Dec 6, 2023
2 parents c2a7853 + 6c8dd4c commit ff30b68
Show file tree
Hide file tree
Showing 6 changed files with 1,533 additions and 17,783 deletions.
25 changes: 12 additions & 13 deletions chains/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.3"
services:
development:
image: trufflesuite/ganache:v7.9.0
Expand All @@ -7,27 +6,27 @@ services:
- 8546:8546
command: --chain.chainId 1337 --chain.vmErrorsOnRPCResponse true -p 8545 -m "${TEST_MNEMONIC}"
healthcheck:
test: [ "CMD-SHELL", "grep 00000000:2161 /proc/**/net/tcp" ]
interval: 1s
timeout: 10s
retries: 10
test: [ "CMD-SHELL", "grep \"00000000:2161 00000000:0000 0A\" /proc/net/tcp || exit 1" ]
interval: 100ms
timeout: 1s
retries: 100
testchain0:
build: ./besu/chain0
ports:
- 8645:8545
- 8646:8546
healthcheck:
test: [ "CMD-SHELL", "grep 00000000:2161 /proc/**/net/tcp" ]
interval: 1s
timeout: 10s
retries: 20
test: [ "CMD-SHELL", "grep \"00000000:2161 00000000:0000 0A\" /proc/net/tcp || exit 1" ]
interval: 100ms
timeout: 1s
retries: 100
testchain1:
build: ./besu/chain1
ports:
- 8745:8545
- 8746:8546
healthcheck:
test: [ "CMD-SHELL", "grep 00000000:2161 /proc/**/net/tcp" ]
interval: 1s
timeout: 10s
retries: 20
test: [ "CMD-SHELL", "grep \"00000000:2161 00000000:0000 0A\" /proc/net/tcp || exit 1" ]
interval: 100ms
timeout: 1s
retries: 100
3 changes: 1 addition & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ require (
github.com/avast/retry-go v3.0.0+incompatible
github.com/btcsuite/btcd v0.22.1
github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce
github.com/cosmos/cosmos-sdk v0.47.4
github.com/cosmos/ibc-go/v7 v7.3.0
github.com/datachainlab/solidity-protobuf/protobuf-solidity/src/protoc/go v0.0.0-20211215073805-59460caf6e59
github.com/ethereum/go-ethereum v1.11.6
Expand Down Expand Up @@ -38,6 +37,7 @@ require (
github.com/confio/ics23/go v0.9.0 // indirect
github.com/cosmos/btcutil v1.0.5 // indirect
github.com/cosmos/cosmos-proto v1.0.0-beta.2 // indirect
github.com/cosmos/cosmos-sdk v0.47.4 // indirect
github.com/cosmos/go-bip39 v1.0.0 // indirect
github.com/cosmos/gogoproto v1.4.10 // indirect
github.com/cosmos/iavl v0.20.0 // indirect
Expand Down Expand Up @@ -98,7 +98,6 @@ require (
github.com/prometheus/common v0.42.0 // indirect
github.com/prometheus/procfs v0.9.0 // indirect
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
github.com/regen-network/cosmos-proto v0.3.1 // indirect
github.com/sasha-s/go-deadlock v0.3.1 // indirect
github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect
github.com/spf13/afero v1.9.5 // indirect
Expand Down
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -494,8 +494,6 @@ github.com/prometheus/procfs v0.9.0/go.mod h1:+pB4zwohETzFnmlpe6yd2lSc+0/46IYZRB
github.com/rakyll/statik v0.1.7 h1:OF3QCZUuyPxuGEP7B4ypUa7sB/iHtqOTDYZXGM8KOdQ=
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 h1:N/ElC8H3+5XpJzTSTfLsJV/mx9Q9g7kxmchpfZyxgzM=
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4=
github.com/regen-network/cosmos-proto v0.3.1 h1:rV7iM4SSFAagvy8RiyhiACbWEGotmqzywPxOvwMdxcg=
github.com/regen-network/cosmos-proto v0.3.1/go.mod h1:jO0sVX6a1B36nmE8C9xBFXpNwWejXC7QqCOnH3O0+YM=
github.com/regen-network/gocuke v0.6.2 h1:pHviZ0kKAq2U2hN2q3smKNxct6hS0mGByFMHGnWA97M=
github.com/regen-network/protobuf v1.3.3-alpha.regen.1 h1:OHEc+q5iIAXpqiqFKeLpu5NwTIkVXUs48vFMwzqpqY4=
github.com/regen-network/protobuf v1.3.3-alpha.regen.1/go.mod h1:2DjTFR1HhMQhiWC5sZ4OhQ3+NtdbZ6oBDKQwq5Ou+FI=
Expand Down
Loading

0 comments on commit ff30b68

Please sign in to comment.