summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcyan <cyjan@mrcyjanek.net>2026-03-16 06:23:31 +0000
committercyan <cyjan@mrcyjanek.net>2026-03-16 06:23:31 +0000
commitc157cb82973b05d1226b39b4d8de0bec4aa10000 (patch)
tree876309ed307224ee44401faaaf29303baaf3adc6
parent0aadd62b3982ac4acacf3b8d83ed4aff9404f47d (diff)
fix: import
-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';