mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 11:39:22 +00:00
make "Null check used on null value" errors when .so errors out more useful (#1549)
Some checks are pending
Cache Dependencies / test (push) Waiting to run
Some checks are pending
Cache Dependencies / test (push) Waiting to run
bump monero_c commit to fix enotes error
This commit is contained in:
parent
649305acc3
commit
1b109ac702
3 changed files with 3 additions and 1 deletions
|
@ -21,6 +21,7 @@ final monero.WalletManager wmPtr = Pointer.fromAddress((() {
|
||||||
print("ptr: $_wmPtr");
|
print("ptr: $_wmPtr");
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
print(e);
|
print(e);
|
||||||
|
rethrow;
|
||||||
}
|
}
|
||||||
return _wmPtr!.address;
|
return _wmPtr!.address;
|
||||||
})());
|
})());
|
||||||
|
|
|
@ -21,6 +21,7 @@ final wownero.WalletManager wmPtr = Pointer.fromAddress((() {
|
||||||
print("ptr: $_wmPtr");
|
print("ptr: $_wmPtr");
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
print(e);
|
print(e);
|
||||||
|
rethrow;
|
||||||
}
|
}
|
||||||
return _wmPtr!.address;
|
return _wmPtr!.address;
|
||||||
})());
|
})());
|
||||||
|
|
|
@ -8,7 +8,7 @@ if [[ ! -d "monero_c" ]];
|
||||||
then
|
then
|
||||||
git clone https://github.com/mrcyjanek/monero_c --branch rewrite-wip
|
git clone https://github.com/mrcyjanek/monero_c --branch rewrite-wip
|
||||||
cd monero_c
|
cd monero_c
|
||||||
git checkout d1e246aaf4c53b60ff9e4ab4a4ac3ae4a1f94a33
|
git checkout c094ed5da69d2274747bf6edd7ca24124487bd34
|
||||||
git reset --hard
|
git reset --hard
|
||||||
git submodule update --init --force --recursive
|
git submodule update --init --force --recursive
|
||||||
./apply_patches.sh monero
|
./apply_patches.sh monero
|
||||||
|
|
Loading…
Reference in a new issue