diff --git a/common/asset.go b/common/asset.go index 3f72236e9..ea9308237 100644 --- a/common/asset.go +++ b/common/asset.go @@ -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: @@ -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 diff --git a/config/reader.go b/config/reader.go index d5b530c99..4a1678f42 100644 --- a/config/reader.go +++ b/config/reader.go @@ -10,7 +10,7 @@ import ( const ( Debug = true - BuildVersion = "v0.18.16-BUILD_VERSION" + BuildVersion = "v0.18.17-BUILD_VERSION" KernelNetworkId = "74c6cdb7d51af57037faa1f5544f8331ced001df5964331911ca51385993b375" SnapshotRoundGap = uint64(3 * time.Second)