Submitted by 3docSec
The x/govshuttle module in canto-main defines and handles two messages that can be emitted by a governance proposal:
However, because the module only registers the QueryServer (and not its MsgServer) in its RegisterServices function, causing no message to be routed to its message server:
If we compare this with another module that can handle messages, for example, CSR, we see that this is the place for registering the MsgServer where transactional messages are routed to:
Successful governance actions that include a LendingMarketProposal or TreasuryProposal will fail to execute because no handler is provided for them.
To reproduce the issue it is sufficient to create and approve a proposal among the affected ones.
Consider adding a RegisterMsgServer call in the x/govshuttle RegisterService callback.
dudong2 (Canto) confirmed and commented:
