diff options
| author | cyan <cyjan@mrcyjanek.net> | 2025-05-19 12:09:32 +0200 |
|---|---|---|
| committer | Czarek Nakamoto <cyjan@mrcyjanek.net> | 2025-05-19 12:16:22 +0200 |
| commit | 4868eb9220962a4176a7ed0fc7c809c6200e71a0 (patch) | |
| tree | 0407d44c8919072b8b464192ce3de9d2a3fa9bbe /impls/monero.dart/lib/src/wallet2.dart | |
| parent | a479a569bc25dd1e9701436404a46f0f509096a4 (diff) | |
feat: callback-based ledger connection (#137)
* feat: callback-based ledger connection
* int -> void use sendToLedgerDeviceCallback only when needed
* fix(ledger): fix binds, make functions static
* update ledger patch
* monero.dart: add ledger callback api
Diffstat (limited to 'impls/monero.dart/lib/src/wallet2.dart')
| -rw-r--r-- | impls/monero.dart/lib/src/wallet2.dart | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/impls/monero.dart/lib/src/wallet2.dart b/impls/monero.dart/lib/src/wallet2.dart index 2c07548..8c41ffa 100644 --- a/impls/monero.dart/lib/src/wallet2.dart +++ b/impls/monero.dart/lib/src/wallet2.dart @@ -364,15 +364,6 @@ abstract class Wallet2Wallet { String deviceShowAddress({required int accountIndex, required int addressIndex}); bool reconnectDevice(); int getBytesReceived(); - bool getStateIsConnected(); - Pointer<UnsignedChar> getSendToDevice(); - int getSendToDeviceLength(); - Pointer<UnsignedChar> getReceivedFromDevice(); - int getReceivedFromDeviceLength(); - bool getWaitsForDeviceSend(); - bool getWaitsForDeviceReceive(); - void setDeviceReceivedData(Pointer<UnsignedChar> data, int len); - void setDeviceSendData(Pointer<UnsignedChar> data, int len); int getBytesSent(); Wallet2WalletListener getWalletListener(); } |
