Skip to content

Commit

Permalink
update some asset deposit capacity
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricfung committed Mar 15, 2024
1 parent 4dcc9bc commit 3f1f1c0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion common/asset.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func GetAssetCapacity(id crypto.Hash) Integer {
case MOBAssetId:
return NewIntegerFromString("40000000")
case USDTEthereumAssetId:
return NewIntegerFromString("5000000")
return NewIntegerFromString("10000000")
case USDTTronAssetId:
return NewIntegerFromString("10000000")
case PandoUSDAssetId:
Expand Down
6 changes: 6 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ func main() {
Aliases: []string{"d"},
Usage: "the data directory",
},
&cli.IntFlag{
Name: "port",
Aliases: []string{"p"},
Value: 123,
Usage: "the peer port to listen",
},
&cli.IntFlag{
Name: "log",
Aliases: []string{"l"},
Expand Down

0 comments on commit 3f1f1c0

Please sign in to comment.