Skip to content

Commit

Permalink
update some default asset capacity
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricfung committed May 26, 2024
1 parent 15fb5b1 commit 584b766
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common/asset.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ func (a *Asset) Verify() error {
func GetAssetCapacity(id crypto.Hash) Integer {
switch id {
case BitcoinAssetId:
return NewIntegerFromString("3500")
return NewIntegerFromString("3000")
case EthereumAssetId:
return NewIntegerFromString("5000")
return NewIntegerFromString("4000")
case XINAssetId:
return NewIntegerFromString("1000000")
case BOXAssetId:
Expand All @@ -67,7 +67,7 @@ func GetAssetCapacity(id crypto.Hash) Integer {
case UNIAssetId:
return NewIntegerFromString("1000000")
case DOGEAssetId:
return NewIntegerFromString("20000000")
return NewIntegerFromString("25000000")
default: // TODO more assets and better default value
return NewIntegerFromString("115792089237316195423570985008687907853269984665640564039457.58400791")
}
Expand Down

0 comments on commit 584b766

Please sign in to comment.