merge main

This commit is contained in:
guozhigq
2024-01-20 13:44:32 +08:00
17 changed files with 557 additions and 171 deletions

View File

@ -80,7 +80,7 @@ class WbiSign {
String getMixinKey(String orig) {
String temp = '';
for (int i = 0; i < mixinKeyEncTab.length; i++) {
temp += orig.split('')[mixinKeyEncTab[i] as int];
temp += orig.split('')[mixinKeyEncTab[i]];
}
return temp.substring(0, 32);
}