Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sgxwallet
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董子豪
sgxwallet
Commits
eec3a72b
Unverified
Commit
eec3a72b
authored
4 years ago
by
Stan Kladko
Committed by
GitHub
4 years ago
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #112 from skalenetwork/SKALE-2678-fix
SKALE-2678-BLS-test-vectors
parents
a91b51fb
554a6f6a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
sgxwall.cpp
sgxwall.cpp
+6
-2
No files found.
sgxwall.cpp
View file @
eec3a72b
...
...
@@ -85,8 +85,12 @@ void SGXWallet::serializeKeys(vector<string>& _ecdsaKeyNames, vector<string>& _b
for
(
uint
i
=
0
;
i
<
_ecdsaKeyNames
.
size
();
i
++
)
{
auto
key
=
to_string
(
i
+
1
);
ecdsaKeysJson
[
key
]
=
_ecdsaKeyNames
[
i
];
blsKeysJson
[
key
]
=
_blsKeyNames
[
i
];
string
keyFull
(
3
-
key
.
size
(),
'0'
);
keyFull
.
append
(
key
);
ecdsaKeysJson
[
keyFull
]
=
_ecdsaKeyNames
[
i
];
blsKeysJson
[
keyFull
]
=
_blsKeyNames
[
i
];
}
top
[
"ecdsaKeyNames"
]
=
ecdsaKeysJson
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment