summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--impls/monero.dart/lib/monero.dart4
1 files changed, 2 insertions, 2 deletions
diff --git a/impls/monero.dart/lib/monero.dart b/impls/monero.dart/lib/monero.dart
index a1f95f5..ce19d4e 100644
--- a/impls/monero.dart/lib/monero.dart
+++ b/impls/monero.dart/lib/monero.dart
@@ -83,8 +83,8 @@ typedef PendingTransaction = Pointer<Void>;
MoneroC? lib;
String libPath = (() {
- if (Platform.isWindows) return 'monero_wallet2_api_c.dll';
- if (Platform.isMacOS) return 'monero_wallet2_api_c.dylib';
+ if (Platform.isWindows) return 'libmonero_wallet2_api_c.dll';
+ if (Platform.isMacOS) return 'libmonero_wallet2_api_c.dylib';
if (Platform.isIOS) return 'MoneroWallet.framework/MoneroWallet';
if (Platform.isAndroid) return 'libmonero_wallet2_api_c.so';
return 'libmonero_wallet2_api_c.so';