Skip to content

Commit 14eb94f

Browse files
committed
init the project
0 parents  commit 14eb94f

File tree

353 files changed

+68207
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

353 files changed

+68207
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.idea
2+
.vscode
3+
*.exe

AccountManager/AccountManager.go

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package AccountManager
2+
3+
type NodeID = uint64
4+
5+
type AccountManager struct {
6+
WorkerNumberSet map[uint32]string
7+
WorkerSetNumber map[string]uint32
8+
VoterNumberSet map[uint32]string
9+
VoterSetNumber map[string]uint32
10+
VoterSet map[string]uint64
11+
WorkerSet map[string]uint64
12+
WorkerCandidateSet map[string]uint64
13+
14+
WorkerCandidateList []string
15+
}

0 commit comments

Comments
 (0)