-
Notifications
You must be signed in to change notification settings - Fork 984
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'brent/remove-gov-prop-id-input' (#3471)
* brent/remove-gov-prop-id-input: changelog: add #3471 update template proposals aesthetic improvement improve logging template proposal script to attach wasm code to proposal data fix clippy see what fails
- Loading branch information
Showing
18 changed files
with
164 additions
and
69 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
.changelog/unreleased/improvements/3471-remove-gov-prop-id-input.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- Minor improvements to governance and PGF code quality, including | ||
template gov proposal jsons and a python script to attach wasm code. | ||
([\#3471](https://github.com/anoma/namada/pull/3471)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2110,7 +2110,6 @@ fn propose_funding( | |
let start_epoch = (epoch.0 + 6) / 3 * 3; | ||
let proposal_json_path = prepare_proposal_data( | ||
test_a.test_dir.path(), | ||
0, | ||
albert, | ||
pgf_funding, | ||
start_epoch, | ||
|
@@ -2138,7 +2137,6 @@ fn propose_inflation(test: &Test) -> Result<Epoch> { | |
let start_epoch = (epoch.0 + 3) / 3 * 3; | ||
let proposal_json = serde_json::json!({ | ||
"proposal": { | ||
"id": 0, | ||
"content": { | ||
"title": "TheTitle", | ||
"authors": "[email protected]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1408,14 +1408,12 @@ fn test_epoch_sleep() -> Result<()> { | |
/// This can be submitted with "init-proposal" command. | ||
pub fn prepare_proposal_data( | ||
test_dir: impl AsRef<std::path::Path>, | ||
id: u64, | ||
source: Address, | ||
data: impl serde::Serialize, | ||
start_epoch: u64, | ||
) -> PathBuf { | ||
let valid_proposal_json = json!({ | ||
"proposal": { | ||
"id": id, | ||
"content": { | ||
"title": "TheTitle", | ||
"authors": "[email protected]", | ||
|
@@ -1950,7 +1948,6 @@ fn proposal_change_shielded_reward() -> Result<()> { | |
let albert = find_address(&test, ALBERT)?; | ||
let valid_proposal_json_path = prepare_proposal_data( | ||
test.test_dir.path(), | ||
0, | ||
albert, | ||
TestWasms::TxProposalMaspRewards.read_bytes(), | ||
12, | ||
|
Oops, something went wrong.