Remove unnecessary comments

This commit is contained in:
Christoph Otter
2024-02-26 11:34:49 +01:00
parent 4f8d5137b2
commit 4c2d28a725
2 changed files with 0 additions and 3 deletions

View File

@@ -122,7 +122,6 @@ func TestGroupWithNewReflectContract(t *testing.T) {
var groupRsp group.MsgSubmitProposalResponse
require.NoError(t, chain.Codec.Unmarshal(execRsp.Data, &groupRsp))
// require.NotEmpty(t, groupRsp.ProposalId)
// and coins received
recipientBalance := chain.Balance(recipientAddr, sdk.DefaultBondDenom)

View File

@@ -60,8 +60,6 @@ func MustExecViaStargateReflectContract[T sdkMessageType](t *testing.T, chain *i
// build the complete reflect message
reflectSendBz := []byte(fmt.Sprintf("{\"reflect_msg\":{\"msgs\":%s}}", vmMsgs))
// {"reflect_msg":{"msgs":[{"stargate":{"type_url":"mytype","value":"EjQ="}}]}}
t.Log(string(reflectSendBz))
execMsg := &types.MsgExecuteContract{
Sender: chain.SenderAccount.GetAddress().String(),