Submitted by p0wd3r, also found by berndartmueller
https://github.com/code-423n4/2023-11-zetachain/blob/main/repos/node/zetaclient/zeta_supply_checker.go#L153-L155 
Due to the incorrect calculation of AbortedTxAmount, the result of ZetaSupplyChecker is erroneous.
In ZetaSupplyChecker, to verify if the supply is correct, the following formula is used:
The calculation for the aborted amount is as follows:
https://github.com/code-423n4/2023-11-zetachain/blob/main/repos/node/zetaclient/zeta_supply_checker.go#L177-L191
The problem arises here by directly taking cctx.GetCurrentOutTxParam().Amount, without determining whether the coinType of this cctx is ZETA.
When a revert cctx is created, outParam.coinType is set to cctx.InboundTxParams.CoinType, which can be gas or ERC20, and not necessarily ZETA.
https://github.com/code-423n4/2023-11-zetachain/blob/main/repos/node/x/crosschain/keeper/keeper_cross_chain_tx_vote_inbound_tx.go#L157-L165
If the revert cctx fails and turns into aborted, for example, in the following code snippet, then this non-ZETA amount will be recorded in AbortedTxAmount.
https://github.com/code-423n4/2023-11-zetachain/blob/main/repos/node/x/crosschain/keeper/keeper_cross_chain_tx_vote_inbound_tx.go#L191-L203
Therefore, the quantity returned by AbortedTxAmount is greater than the actual amount of ZETA.
VScode
Ensure coinType is ZETA before recording the amount.
lumtis (ZetaChain) confirmed
