[BUGFIX]: Correct casting to AccAddress to fix `HasProviderBonded` call
-
types.AccAddress(nodeAccount.BondAddress)was the incorrect casting to AccAddress - this led toHasProviderBondedalways returning true (preventing Node Operator from setting fee on a new node) - Update logic to use
nodeAccount.BondAddress.AccAddress(), which is correct