-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to bindinges version 1.3.0-pre0 (#102)
- Loading branch information
1 parent
092c69e
commit 3c394ce
Showing
6 changed files
with
157 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Copyright (c) 2018-2022 The MobileCoin Foundation | ||
|
||
// QuorumSet data types. | ||
// Implemented here because the Rust definition is generic, so these types are for the current impl. | ||
|
||
syntax = "proto3"; | ||
|
||
package quorum_set; | ||
option go_package = "mobilecoin/api"; | ||
|
||
import "external.proto"; | ||
|
||
message Node { | ||
string responder_id = 1; | ||
external.Ed25519Public public_key = 2; | ||
} | ||
|
||
message QuorumSetMember { | ||
oneof member { | ||
Node node = 1; | ||
QuorumSet inner_set = 2; | ||
} | ||
} | ||
|
||
message QuorumSet { | ||
uint32 threshold = 1; | ||
repeated QuorumSetMember members = 2; | ||
} |
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