Skip to content

Commit

Permalink
- remove commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
StrathCole committed Nov 16, 2024
1 parent 6a03590 commit 4ca2078
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions custom/auth/client/utils/feeutils.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,30 +143,6 @@ func FilterMsgAndComputeTax(clientCtx client.Context, msgs ...sdk.Msg) (taxes sd
}

taxes = taxes.Add(tax...)

/*case *wasmtypes.MsgInstantiateContract:
tax, err := computeTax(clientCtx, taxRate, msg.Funds)
if err != nil {
return nil, err
}
taxes = taxes.Add(tax...)
case *wasmtypes.MsgInstantiateContract2:
tax, err := computeTax(clientCtx, taxRate, msg.Funds)
if err != nil {
return nil, err
}
taxes = taxes.Add(tax...)
case *wasmtypes.MsgExecuteContract:
tax, err := computeTax(clientCtx, taxRate, msg.Funds)
if err != nil {
return nil, err
}
taxes = taxes.Add(tax...)*/
}
}

Expand Down

0 comments on commit 4ca2078

Please sign in to comment.