Skip to content

Commit

Permalink
chore: self-review improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanchriswhite authored Nov 21, 2024
1 parent fe562ae commit f206a28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/scripts/params/supplier_staking_fee.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"authority": "pokt10d07y265gmmuvt4z0w9aw880jnsr700j8yv32t",
"name": "staking_fee",
"as_coin": {
"amount": "1000000",
"amount": "1",
"denom": "upokt"
}
}
Expand Down
2 changes: 1 addition & 1 deletion x/supplier/types/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var (
KeyStakingFee = []byte("StakingFee")
ParamStakingFee = "staking_fee"
// TODO_MAINNET: Determine the default value.
DefaultStakingFee = cosmostypes.NewInt64Coin("upokt", 1000000) // 1 POKT
DefaultStakingFee = cosmostypes.NewInt64Coin("upokt", 1) // 1 uPOKT
)

// ParamKeyTable the param key table for launch module
Expand Down

0 comments on commit f206a28

Please sign in to comment.