diff options
Diffstat (limited to 'impls/monero.dart/lib/wownero.dart')
| -rw-r--r-- | impls/monero.dart/lib/wownero.dart | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/impls/monero.dart/lib/wownero.dart b/impls/monero.dart/lib/wownero.dart index 56bd43e..d233417 100644 --- a/impls/monero.dart/lib/wownero.dart +++ b/impls/monero.dart/lib/wownero.dart @@ -83,11 +83,11 @@ typedef PendingTransaction = Pointer<Void>; WowneroC? lib; String libPath = (() { - if (Platform.isWindows) return 'wownero_libwallet2_api_c.dll'; - if (Platform.isMacOS) return 'wownero_libwallet2_api_c.dylib'; + if (Platform.isWindows) return 'libwownero_wallet2_api_c.dll'; + if (Platform.isMacOS) return 'libwownero_wallet2_api_c.dylib'; if (Platform.isIOS) return 'WowneroWallet.framework/WowneroWallet'; - if (Platform.isAndroid) return 'libwownero_libwallet2_api_c.so'; - return 'wownero_libwallet2_api_c.so'; + if (Platform.isAndroid) return 'libwownero_wallet2_api_c.so'; + return 'libwownero_wallet2_api_c.so'; })(); Map<String, List<int>> debugCallLength = {}; |
