Skip to content

Commit c4edb69

Browse files
Update AvalancheGo (#157)
* update simulator * update AvalancheGo * update all versions * remove flaky tests * more badges
1 parent a427dc4 commit c4edb69

File tree

7 files changed

+57
-572
lines changed

7 files changed

+57
-572
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11

22
# Subnet EVM
33

4-
![Github Actions](https://github.com/ava-labs/subnet-evm/actions/workflows/lint-tests-release.yml/badge.svg)
4+
[![Build + Test + Release](https://github.com/ava-labs/subnet-evm/actions/workflows/lint-tests-release.yml/badge.svg)](https://github.com/ava-labs/subnet-evm/actions/workflows/lint-tests-release.yml)
5+
[![CodeQL](https://github.com/ava-labs/subnet-evm/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/ava-labs/subnet-evm/actions/workflows/codeql-analysis.yml)
56

67
[Avalanche](https://docs.avax.network/overview/getting-started/avalanche-platform) is a network composed of multiple blockchains.
78
Each blockchain is an instance of a Virtual Machine (VM), much like an object in an object-oriented language is an instance of a class.
@@ -23,9 +24,10 @@ The Subnet EVM runs in a separate process from the main AvalancheGo process and
2324
2425
2526
26-
27-
28-
27+
28+
29+
30+
2931
```
3032

3133
## API

cmd/simulator/go.mod

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,24 @@ module github.com/ava-labs/subnet-evm/cmd/simulator
33
go 1.17
44

55
require (
6-
github.com/ava-labs/subnet-evm v0.2.5-0.20220712175031-1bc7dbd79906
7-
github.com/ethereum/go-ethereum v1.10.16
6+
github.com/ava-labs/subnet-evm v0.2.6-0.20220721235439-a427dc4e4181
7+
github.com/ethereum/go-ethereum v1.10.20
88
github.com/spf13/viper v1.10.1
99
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
1010
)
1111

1212
require (
1313
github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6 // indirect
14-
github.com/ava-labs/avalanchego v1.7.13 // indirect
15-
github.com/btcsuite/btcd v0.21.0-beta // indirect
14+
github.com/ava-labs/avalanchego v1.7.14 // indirect
15+
github.com/btcsuite/btcd/btcec/v2 v2.2.0 // indirect
1616
github.com/davecgh/go-spew v1.1.1 // indirect
1717
github.com/deckarep/golang-set v1.8.0 // indirect
18-
github.com/fsnotify/fsnotify v1.5.1 // indirect
18+
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
19+
github.com/fsnotify/fsnotify v1.5.4 // indirect
1920
github.com/go-ole/go-ole v1.2.1 // indirect
2021
github.com/go-stack/stack v1.8.0 // indirect
2122
github.com/golang/mock v1.6.0 // indirect
22-
github.com/google/uuid v1.1.5 // indirect
23+
github.com/google/uuid v1.2.0 // indirect
2324
github.com/gorilla/websocket v1.4.2 // indirect
2425
github.com/hashicorp/hcl v1.0.0 // indirect
2526
github.com/magiconair/properties v1.8.5 // indirect
@@ -33,12 +34,12 @@ require (
3334
github.com/spf13/cast v1.4.1 // indirect
3435
github.com/spf13/jwalterweatherman v1.1.0 // indirect
3536
github.com/spf13/pflag v1.0.5 // indirect
36-
github.com/stretchr/testify v1.7.0 // indirect
37+
github.com/stretchr/testify v1.7.2 // indirect
3738
github.com/subosito/gotenv v1.2.0 // indirect
3839
github.com/tklauser/go-sysconf v0.3.5 // indirect
3940
github.com/tklauser/numcpus v0.2.2 // indirect
40-
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
41-
golang.org/x/sys v0.0.0-20220405052023-b1e9470b6e64 // indirect
41+
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
42+
golang.org/x/sys v0.0.0-20220627191245-f75cf1eec38b // indirect
4243
golang.org/x/text v0.3.7 // indirect
4344
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
4445
gopkg.in/ini.v1 v1.66.2 // indirect

0 commit comments

Comments
 (0)