Skip to content

Commit f81fbb1

Browse files
fix feequoter binding (#605)
1 parent 5683924 commit f81fbb1

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

pkg/ccip/bindings/feequoter/fee_quoter.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -275,14 +275,14 @@ type UpdateFeeTokens struct {
275275
// UpdateTokenTransferFeeConfig is a value type stored in a dictionary, NOT a message.
276276
// It represents per-destination-chain token transfer fee config updates.
277277
type UpdateTokenTransferFeeConfig struct {
278-
Add *tlbe.Dict[uint64, TokenTransferFeeConfig] `tlb:"."`
279-
Remove common.SnakedCell[common.AddressWrap] `tlb:"^"`
278+
Add *tlbe.Dict[common.AddressWrap, TokenTransferFeeConfig] `tlb:"."`
279+
Remove common.SnakedCell[common.AddressWrap] `tlb:"^"`
280280
}
281281

282282
// UpdateTokenTransferFeeConfigs is the message type for updating token transfer fee configs.
283283
type UpdateTokenTransferFeeConfigs struct {
284-
_ tlb.Magic `tlb:"#B2826316" json:"-"` //nolint:revive // Ignore opcode tag
285-
Updates *tlbe.Dict[uint64, TokenTransferFeeConfig] `tlb:"."` // map<uint64, UpdateTokenTransferFeeConfig>
284+
_ tlb.Magic `tlb:"#B2826316" json:"-"` //nolint:revive // Ignore opcode tag
285+
Updates *tlbe.Dict[uint64, UpdateTokenTransferFeeConfig] `tlb:"."`
286286
}
287287

288288
type UpdateDestChainConfig struct {

0 commit comments

Comments
 (0)