-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(oracle): add support for get price indexed by assetID #77
Changes from all commits
d452e62
f525274
28806d9
f0503e1
cb156fb
fb3664a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -12,7 +12,7 @@ var zeroBig = big.NewInt(0) | |||||||||||||||||||||||
|
||||||||||||||||||||||||
type ( | ||||||||||||||||||||||||
ItemV map[string]*big.Int | ||||||||||||||||||||||||
ItemP *common.Params | ||||||||||||||||||||||||
ItemP types.Params | ||||||||||||||||||||||||
ItemM types.MsgItem | ||||||||||||||||||||||||
) | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
|
@@ -22,7 +22,6 @@ type Cache struct { | |||||||||||||||||||||||
params *cacheParams | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
// type cacheMsgs map[uint64][]*ItemM | ||||||||||||||||||||||||
type cacheMsgs []*ItemM | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
// used to track validator change | ||||||||||||||||||||||||
|
@@ -33,7 +32,8 @@ type cacheValidator struct { | |||||||||||||||||||||||
|
||||||||||||||||||||||||
// used to track params change | ||||||||||||||||||||||||
type cacheParams struct { | ||||||||||||||||||||||||
params *common.Params | ||||||||||||||||||||||||
// params types.Params | ||||||||||||||||||||||||
params *ItemP | ||||||||||||||||||||||||
update bool | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
|
@@ -102,10 +102,10 @@ func (c *cacheValidator) commit(ctx sdk.Context, k common.KeeperOracle) { | |||||||||||||||||||||||
k.SetValidatorUpdateBlock(ctx, types.ValidatorUpdateBlock{Block: block}) | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
func (c *cacheParams) add(p *common.Params) { | ||||||||||||||||||||||||
func (c *cacheParams) add(p ItemP) { | ||||||||||||||||||||||||
// params' update is triggered when params is actually updated, so no need to do comparison here, just udpate and mark the flag | ||||||||||||||||||||||||
// TODO: add comparison check, that's something should be done for validation | ||||||||||||||||||||||||
c.params = p | ||||||||||||||||||||||||
c.params = &p | ||||||||||||||||||||||||
Comment on lines
+105
to
+108
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add validation check for parameter updates. The function updates the parameters without comparison, which might lead to unnecessary updates. Consider adding a validation check to ensure that the parameters have actually changed. - // TODO: add comparison check, that's something should be done for validation
- c.params = &p
+ if !reflect.DeepEqual(c.params, &p) {
+ c.params = &p
+ c.update = true
+ } Committable suggestion
Suggested change
|
||||||||||||||||||||||||
c.update = true | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
|
@@ -164,11 +164,11 @@ func (c *Cache) GetCache(i any) bool { | |||||||||||||||||||||||
item[addr] = power | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
return c.validators.update | ||||||||||||||||||||||||
case ItemP: | ||||||||||||||||||||||||
case *ItemP: | ||||||||||||||||||||||||
if item == nil { | ||||||||||||||||||||||||
return false | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
*item = *(c.params.params) | ||||||||||||||||||||||||
*item = *c.params.params | ||||||||||||||||||||||||
return c.params.update | ||||||||||||||||||||||||
case *([]*ItemM): | ||||||||||||||||||||||||
if item == nil { | ||||||||||||||||||||||||
|
@@ -218,7 +218,7 @@ func NewCache() *Cache { | |||||||||||||||||||||||
validators: make(map[string]*big.Int), | ||||||||||||||||||||||||
}, | ||||||||||||||||||||||||
params: &cacheParams{ | ||||||||||||||||||||||||
params: &common.Params{}, | ||||||||||||||||||||||||
params: &ItemP{}, | ||||||||||||||||||||||||
}, | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Improve error handling in
GetTokenIDFromAssetID
.Instead of returning 0 when
agc.params
is nil orassetID
is not found, consider returning an error to provide more context.Committable suggestion