-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix VM.GetBlockIDAtHeight (#595) * Fix and optimize GetBlockIDAtHeight * Add test --------- Co-authored-by: Darioush Jalali <[email protected]> * bump subnet-evm & avago * update coreth tip * bump mingo version * Update scripts/versions.sh Co-authored-by: Darioush Jalali <[email protected]> Signed-off-by: Ceyhun Onur <[email protected]> * go mod tidy --------- Signed-off-by: Ceyhun Onur <[email protected]> Co-authored-by: Stephen Buttolph <[email protected]> Co-authored-by: Darioush Jalali <[email protected]>
- Loading branch information
1 parent
6c018f8
commit dc1d78d
Showing
12 changed files
with
70 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,10 +59,11 @@ The Subnet EVM runs in a separate process from the main AvalancheGo process and | |
[v0.6.0] [email protected] (Protocol Version: 33) | ||
[v0.6.1] [email protected] (Protocol Version: 33) | ||
[v0.6.2] [email protected] (Protocol Version: 34) | ||
[v0.6.3] [email protected] (Protocol Version: 35) | ||
[v0.6.4] [email protected] (Protocol Version: 35) | ||
[v0.6.5] [email protected] (Protocol Version: 35) | ||
[v0.6.6] [email protected] (Protocol Version: 35) | ||
[v0.6.3] [email protected] (Protocol Version: 35) | ||
[v0.6.4] [email protected] (Protocol Version: 35) | ||
[v0.6.5] [email protected] (Protocol Version: 35) | ||
[v0.6.6] [email protected] (Protocol Version: 35) | ||
[v0.6.7] [email protected] (Protocol Version: 35) | ||
``` | ||
|
||
## API | ||
|
@@ -102,7 +103,7 @@ To support these changes, there have been a number of changes to the SubnetEVM b | |
|
||
### Clone Subnet-evm | ||
|
||
First install Go 1.21.11 or later. Follow the instructions [here](https://go.dev/doc/install). You can verify by running `go version`. | ||
First install Go 1.21.12 or later. Follow the instructions [here](https://go.dev/doc/install). You can verify by running `go version`. | ||
|
||
Set `$GOPATH` environment variable properly for Go to look for Go Workspaces. Please read [this](https://go.dev/doc/code) for details. You can verify by running `echo $GOPATH`. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"rpcChainVMProtocolVersion": { | ||
"v0.6.7": 35, | ||
"v0.6.6": 35, | ||
"v0.6.5": 35, | ||
"v0.6.4": 35, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters