Fix coin-specific Dart wallet bindings
Check if checksums are in sync / android (push) Failing after 15s
Check if dart bindings are in sync / android (push) Failing after 15s
Build documentation / build (push) Failing after 13s
full compatibility check / lib_mingw (peya) (push) Has been cancelled
full compatibility check / lib_mingw (salvium) (push) Has been cancelled
full compatibility check / lib_android (monero) (push) Has been cancelled
full compatibility check / lib_android (peya) (push) Has been cancelled
full compatibility check / lib_android (salvium) (push) Has been cancelled
full compatibility check / lib_linux (monero) (push) Has been cancelled
full compatibility check / lib_linux (peya) (push) Has been cancelled
full compatibility check / lib_linux (salvium) (push) Has been cancelled
full compatibility check / macos build (monero) (push) Has been cancelled
full compatibility check / macos build (peya) (push) Has been cancelled
full compatibility check / macos build (salvium) (push) Has been cancelled
full compatibility check / ios build (monero) (push) Has been cancelled
full compatibility check / ios build (peya) (push) Has been cancelled
full compatibility check / ios build (salvium) (push) Has been cancelled
full compatibility check / create single release file (push) Has been cancelled
full compatibility check / test ts library (push) Has been cancelled
full compatibility check / linux regression tests (monero) (push) Has been cancelled
full compatibility check / linux regression tests (peya) (push) Has been cancelled
full compatibility check / linux regression tests (salvium) (push) Has been cancelled
full compatibility check / macos regression tests (monero) (push) Has been cancelled
full compatibility check / macos regression tests (peya) (push) Has been cancelled
full compatibility check / macos regression tests (salvium) (push) Has been cancelled
full compatibility check / linux integration tests (monero) (push) Has been cancelled
full compatibility check / lib_mingw (monero) (push) Has been cancelled
full compatibility check / linux integration tests (peya) (push) Has been cancelled
full compatibility check / linux integration tests (salvium) (push) Has been cancelled
full compatibility check / macos integration tests (monero) (push) Has been cancelled
full compatibility check / macos integration tests (peya) (push) Has been cancelled
full compatibility check / macos integration tests (salvium) (push) Has been cancelled
full compatibility check / comment on pr (push) Has been cancelled

This commit is contained in:
Codex
2026-04-08 19:47:55 +02:00
parent 5635ca4db0
commit d701dd10d3
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -3412,7 +3412,7 @@ String Wallet_serializeCacheToJson(wallet ptr) {
lib ??= PeyaC(DynamicLibrary.open(libPath));
final ret = lib!.PEYA_Wallet_serializeCacheToJson(ptr);
final str = ret.cast<Utf8>().toDartString();
MONERO_free(ret.cast());
PEYA_free(ret.cast());
debugEnd?.call('PEYA_Wallet_serializeCacheToJson');
return str;
}
+1 -1
View File
@@ -3412,7 +3412,7 @@ String Wallet_serializeCacheToJson(wallet ptr) {
lib ??= SalviumC(DynamicLibrary.open(libPath));
final ret = lib!.SALVIUM_Wallet_serializeCacheToJson(ptr);
final str = ret.cast<Utf8>().toDartString();
MONERO_free(ret.cast());
SALVIUM_free(ret.cast());
debugEnd?.call('SALVIUM_Wallet_serializeCacheToJson');
return str;
}
@@ -4614,14 +4614,14 @@ class PeyaC {
void Function(
ffi.Pointer<ffi.Void>, ffi.Pointer<ffi.UnsignedChar>, int)>();
void MONERO_Wallet_setLedgerCallback(
void PEYA_Wallet_setLedgerCallback(
ffi.Pointer<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<ffi.UnsignedChar> command,
ffi.UnsignedInt cmd_len)>>
sendToLedgerDevice,
) {
return _MONERO_Wallet_setLedgerCallback(
return _PEYA_Wallet_setLedgerCallback(
sendToLedgerDevice,
);
}
@@ -4616,14 +4616,14 @@ class SalviumC {
void Function(
ffi.Pointer<ffi.Void>, ffi.Pointer<ffi.UnsignedChar>, int)>();
void MONERO_Wallet_setLedgerCallback(
void SALVIUM_Wallet_setLedgerCallback(
ffi.Pointer<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<ffi.UnsignedChar> command,
ffi.UnsignedInt cmd_len)>>
sendToLedgerDevice,
) {
return _MONERO_Wallet_setLedgerCallback(
return _SALVIUM_Wallet_setLedgerCallback(
sendToLedgerDevice,
);
}