Hanjun Kim

Results 21 issues of Hanjun Kim

Instead, use `new(Section)` or `&Section{}`.

키를 받는 URL이 https://nid.naver.com/login/ext/keys.nhn로 변경

We can put ending timestamp inside store keys to mitigate this problem. When queuing staking, the end time is set to current blocktime + `time.Duration(params.NextEpochDays)`, and queued staking will be...

This could be mitigated through: - Increasing `params.DelayedStakingGasFee` - Limiting the number of queued stakings within an epoch Ref. https://github.com/tendermint/farming/issues/102

wontfix

## Description By introducing reference counting similar to the x/distribution module, we can safely prune abandoned state like no longer used `HistoricalRewards`, `OutstandingRewards`, `CurrentEpoch`, .... closes: #142 ## References See:...

Currently we call `WithdrawRewards` for each staking coin denom, which sends rewards for that denom to the farmer: https://github.com/tendermint/farming/blob/debb2e65f4d50d8313df5c595be43d5af6cb117f/x/farming/keeper/staking.go#L280-L301 We can optimize this to send total rewards only once at...

help wanted
wontfix

Currently some data permanently remain in store(e.g. `CurrentEpoch`, `HistoricalRewards`). By introducing reference counting as in Cosmos SDK, we can safely prune these data.

enhancement
help wanted

In the proto files, liquidity types are defined under `tendermint.liquidity.v1beta1` package. https://github.com/tendermint/liquidity/blob/e118e210d418594210f4f4862e03de1bfac6d050/proto/tendermint/liquidity/v1beta1/liquidity.proto#L2 But for the query endpoints, it uses `/cosmos/liquidity/v1beta1/` as the path prefix. https://github.com/tendermint/liquidity/blob/e118e210d418594210f4f4862e03de1bfac6d050/proto/tendermint/liquidity/v1beta1/query.proto#L16 We have to make it...

bug