fix(dubp): get_legacy_pubkey params order

This commit is contained in:
librelois 2021-02-16 00:27:38 +01:00
parent 56d0f98ca2
commit 838ce851eb
1 changed files with 1 additions and 1 deletions

View File

@ -256,8 +256,8 @@ class DubpRust {
singleCompletePort<String, String>(completer, callback: _handleErr); singleCompletePort<String, String>(completer, callback: _handleErr);
native.get_legacy_pubkey( native.get_legacy_pubkey(
sendPort.nativePort, sendPort.nativePort,
Utf8.toUtf8(password),
Utf8.toUtf8(salt), Utf8.toUtf8(salt),
Utf8.toUtf8(password),
); );
return completer.future; return completer.future;
} }