Skip to content

Commit

Permalink
bump version to v0.18.17
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricfung committed Nov 12, 2024
1 parent 9cc5d81 commit 29dbcaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions common/asset.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func (a *Asset) Verify() error {
func GetAssetCapacity(id crypto.Hash) Integer {
switch id {
case BitcoinAssetId:
return NewIntegerFromString("2500")
return NewIntegerFromString("2700")
case EthereumAssetId:
return NewIntegerFromString("5000")
case XINAssetId:
Expand All @@ -65,7 +65,7 @@ func GetAssetCapacity(id crypto.Hash) Integer {
case SOLAssetId:
return NewIntegerFromString("60000")
case UNIAssetId:
return NewIntegerFromString("1000000")
return NewIntegerFromString("1100000")
case DOGEAssetId:
return NewIntegerFromString("25000000")
default: // TODO more assets and better default value
Expand Down
2 changes: 1 addition & 1 deletion config/reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

const (
Debug = true
BuildVersion = "v0.18.16-BUILD_VERSION"
BuildVersion = "v0.18.17-BUILD_VERSION"
KernelNetworkId = "74c6cdb7d51af57037faa1f5544f8331ced001df5964331911ca51385993b375"

Check warning on line 14 in config/reader.go

View workflow job for this annotation

GitHub Actions / lint

var-naming: const KernelNetworkId should be KernelNetworkID (revive)

SnapshotRoundGap = uint64(3 * time.Second)
Expand Down

0 comments on commit 29dbcaf

Please sign in to comment.