forked from mobilecoinfoundation/mobilecoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change governors/tokens.json to support multi signers (mobilecoinfoun…
…dation#2736) * add helper object for making configuration a bit more human friendly * tokens.json uses the new nested format * deployment and local network fixes * Apply suggestions from code review Co-authored-by: Nick Santana <[email protected]> * misc pr fixes * cd? * add SignerIdentity/SignerIdentityMap * first step in converting governors to the new format * mc-consensus-service-config tests passing * cleanups * update cd stuff * port some signer set tests * remove old signer_set config stuff * lint * trigger cd * fix off by 1 * cd Co-authored-by: Nick Santana <[email protected]>
- Loading branch information
1 parent
723fc35
commit 3e26390
Showing
19 changed files
with
741 additions
and
265 deletions.
There are no files selected for viewing
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 was deleted.
Oops, something went wrong.
File renamed without changes.
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,19 @@ | ||
{ | ||
"governors_signature": "", | ||
"tokens": [ | ||
{ | ||
"token_id": 0, | ||
"minimum_fee": 400000000 | ||
}, | ||
{ | ||
"token_id": 8192, | ||
"minimum_fee": 1024, | ||
"signer_identities": {}, | ||
"governors": { | ||
"type": "MultiSig", | ||
"threshold": 1, | ||
"signers": [] | ||
} | ||
} | ||
] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.