Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moved to the CiphertextBallot and removed the deprecated one #228

Merged
merged 1 commit into from
May 5, 2023

Conversation

SteveMaier-IRT
Copy link
Collaborator

Fixed the order of the number of guardians and quorum for creating a new key ceremony

Issue

Fixes #227

Description

Reorders the fields for creating a key ceremony.

Testing

Fixed the order of the number of guardians and quorum for creating a new key ceremony
@@ -40,7 +40,7 @@ public async Task CreateKeyCeremony()
return;
}

var keyCeremony = new KeyCeremonyRecord(KeyCeremonyName, Quorum, NumberOfGuardians, this.UserName!);
var keyCeremony = new KeyCeremonyRecord(KeyCeremonyName, NumberOfGuardians, Quorum, this.UserName!);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just since we have had this issue in the past:

Suggested change
var keyCeremony = new KeyCeremonyRecord(KeyCeremonyName, NumberOfGuardians, Quorum, this.UserName!);
var keyCeremony = new KeyCeremonyRecord(name: KeyCeremonyName,
numberOfGuardians: NumberOfGuardians,
quorum: Quorum,
admin: this.UserName!);

@SteveMaier-IRT SteveMaier-IRT merged commit ec84c32 into main May 5, 2023
11 checks passed
@SteveMaier-IRT SteveMaier-IRT deleted the fix/KeyCeremonyFix branch May 5, 2023 14:47
john-s-morgan pushed a commit that referenced this pull request May 8, 2023
Fixed the order of the number of guardians and quorum for creating a new key ceremony
john-s-morgan added a commit that referenced this pull request May 8, 2023
* make Drive and ZipService use a consistent interface

* Rename file to match class name

* Add constants for filenames

* Allow for multiple writes

* update constants and IStorageService

* implicit conversion for records to string

* export encryption

* Storage extract

* Update Election

* Bump actions/setup-node from 2 to 3 (#226)

* Moved to the CiphertextBallot and removed the deprecated one (#228)

Fixed the order of the number of guardians and quorum for creating a new key ceremony

* remove uneeded files

* export election package

* resolve Linter issues

* Cleanup

* UtcNow not now

* Unneeded using

* Linter updates

* constructor update

* mark step 1 complete

* AddBallots Button enabling

* set DateTime on export

* Mark election as exported

* naming

---------

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Steve Maier <82616727+SteveMaier-IRT@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

🐞Create Key Ceremony Issue
2 participants