-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'cal/v2-go-mod' of github.com:celestiaorg/celestia-app i…
…nto cal/v2-go-mod
- Loading branch information
Showing
6 changed files
with
19 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ jobs: | |
run: make test-coverage | ||
|
||
- name: Upload coverage.txt | ||
uses: codecov/[email protected].0 | ||
uses: codecov/[email protected].1 | ||
with: | ||
file: ./coverage.txt | ||
|
||
|
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 |
---|---|---|
@@ -1,8 +1,11 @@ | ||
package v2 | ||
|
||
const ( | ||
Version uint64 = 2 | ||
SquareSizeUpperBound int = 128 | ||
SubtreeRootThreshold int = 64 | ||
GlobalMinGasPrice float64 = 0.002 // same as DefaultMinGasPrice | ||
Version uint64 = 2 | ||
SquareSizeUpperBound int = 128 | ||
SubtreeRootThreshold int = 64 | ||
// GlobalMinGasPrice is used by x/minfee to prevent transactions from being | ||
// included in a block if they specify a gas price lower than this | ||
// parameter. GlobalMinGasPrice == DefaultMinGasPrice. | ||
GlobalMinGasPrice float64 = 0.002 // utia | ||
) |
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