Skip to content

Commit

Permalink
chore: set default deployment and bid deposits to 500000uakt (#136)
Browse files Browse the repository at this point in the history
Signed-off-by: Artur Troian <[email protected]>
  • Loading branch information
troian authored Mar 12, 2024
1 parent 7de4efc commit cca62a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go/node/deployment/v1beta3/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs {
func DefaultParams() Params {
return Params{
MinDeposits: sdk.Coins{
sdk.NewCoin("uakt", sdk.NewInt(5000000)),
sdk.NewCoin("uakt", sdk.NewInt(500000)),
},
}
}
Expand Down
2 changes: 1 addition & 1 deletion go/node/market/v1beta4/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
var _ paramtypes.ParamSet = (*Params)(nil)

var (
DefaultBidMinDeposit = sdk.NewCoin("uakt", sdk.NewInt(5000000))
DefaultBidMinDeposit = sdk.NewCoin("uakt", sdk.NewInt(500000))
defaultOrderMaxBids uint32 = 20
maxOrderMaxBids uint32 = 500
)
Expand Down

0 comments on commit cca62a4

Please sign in to comment.