We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d606d3 commit 408af15Copy full SHA for 408af15
1 file changed
x/deployment/keeper/abci.go
@@ -58,6 +58,10 @@ func (k Keeper) EndBlocker(ctx context.Context) error {
58
return true, err
59
}
60
61
+ if srcCoin.Denom != burnCoin.Denom {
62
+ return false, nil
63
+ }
64
+
65
burnCoin = burnCoin.Add(srcCoin)
66
mintCoin = mintCoin.Add(dstCoin)
67
0 commit comments