-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduced new field TrackStationType in node config.
Made the tracksbft to process different blockchains differently to make batches of transactions. Renamed and refactored the `getBalance.go`, `storePod.go`, and `tracksTxUtils.go` files which are related to transaction tracking and pod storing. These files were broken down into `evmGetBalance.go`, `evmStorePod.go` and `evmUtils.go` respectively to better indicate that these functionalities are specific to the Ethereum Virtual Machine. Adjustments were also made in `kv.go` to account for the changes in previous files.
- Loading branch information
1 parent
d2de20a
commit fc8535d
Showing
16 changed files
with
69 additions
and
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ v0.34.24, or Informal Systems' public fork), you can upgrade to CometBFT | |
v0.34.27 by replacing your dependency in your `go.mod` file: | ||
|
||
```bash | ||
go mod edit -replace github.com/airchains-network/tracksbft=github.com/cometbft/[email protected] | ||
go mod edit -replace github.com/tendermint/tendermint=github.com/cometbft/[email protected] | ||
``` | ||
|
||
We make use of the original module URL in order to minimize the impact of | ||
|
@@ -60,9 +60,9 @@ If you run into any trouble with this upgrade, please [contact us][discussions]. | |
For historical upgrading instructions for Tendermint Core v0.34.24 and earlier, | ||
please see the [Tendermint Core upgrading instructions][tmupgrade]. | ||
|
||
[v03424]: https://github.com/airchains-network/tracksbft/releases/tag/v0.34.24 | ||
[v03424]: https://github.com/tendermint/tendermint/releases/tag/v0.34.24 | ||
[v03425]: https://github.com/informalsystems/tendermint/releases/tag/v0.34.25 | ||
[v03426]: https://github.com/informalsystems/tendermint/releases/tag/v0.34.26 | ||
[discussions]: https://github.com/cometbft/cometbft/discussions | ||
[tmupgrade]: https://github.com/airchains-network/tracksbft/blob/35581cf54ec436b8c37fabb43fdaa3f48339a170/UPGRADING.md | ||
[tmupgrade]: https://github.com/tendermint/tendermint/blob/35581cf54ec436b8c37fabb43fdaa3f48339a170/UPGRADING.md | ||
[go120]: https://go.dev/blog/go1.20 |
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
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
File renamed without changes.
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