-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Tempo - add cs to change default fee token #20510
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
Conversation
CORA - Pending ReviewersAll codeowners have approved! ✅ Legend: ✅ Approved | ❌ Changes Requested | 💬 Commented | 🚫 Dismissed | ⏳ Pending | ❓ Unknown For more details, see the full review summary. |
| return out, fmt.Errorf("abi pack: %w", err) | ||
| } | ||
|
|
||
| data = append(data, encodedArgs...) |
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.
very minor nit, I think there is a slightly better way to do this, using abi.pack or something like that. but this is fine as well
| chain, err := findChainBySelector(env, cfg.ChainSel) | ||
| if err != nil { | ||
| return out, fmt.Errorf("error: %w finding chain by selector: %d", err, cfg.ChainSel) | ||
| } | ||
|
|
||
| evmChain, ok := chain.(evm.Chain) |
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.
you can simply do, instead of findChainBySelector method & casting
env.BlockChains.EVMChains()[chainSelector]
|




No description provided.