From d1edc8d865dd824a01f7d6b2fef50362c1d44c29 Mon Sep 17 00:00:00 2001
From: Philip Offtermatt
Date: Tue, 19 Sep 2023 17:03:15 +0200
Subject: [PATCH] Remove prop type
---
tests/e2e/actions.go | 2 --
1 file changed, 2 deletions(-)
diff --git a/tests/e2e/actions.go b/tests/e2e/actions.go
index 7f69b11cb6..36e0c47dd2 100644
--- a/tests/e2e/actions.go
+++ b/tests/e2e/actions.go
@@ -189,7 +189,6 @@ type submitTextProposalAction struct {
Chain ChainID
From ValidatorID
Deposit uint
- PropType string
Title string
Description string
}
@@ -204,7 +203,6 @@ func (tr TestRun) submitTextProposal(
"tx", "gov", "submit-legacy-proposal",
`--title`, action.Title,
`--description`, action.Description,
- `--type`, action.PropType,
`--deposit`, fmt.Sprint(action.Deposit)+`stake`,
`--from`, `validator`+fmt.Sprint(action.From),
`--chain-id`, string(tr.chainConfigs[action.Chain].ChainId),