summaryrefslogtreecommitdiff
path: root/wownero_libwallet2_api_c/src/main
AgeCommit message (Collapse)Author
2024-08-28std::set -> std::vectorCzarek Nakamoto
2024-08-28update checksumCzarek Nakamoto
2024-08-28fix multdest mixingCzarek Nakamoto
2024-08-26Monero v0.18.3.4 (#38)cyan
* updated monero dependency * update patches for v0.18.3.4 * update generate checksum to include version of submodule as well
2024-07-30Fix darwin builds (#24)v0.18.3.3-RC50cyan
* Update wownero_libwallet2_api_c.exp
2024-07-30make checksum less noisy (#23)cyan
2024-07-30Generic safety cleanup (#22)cyan
* create checksum system for versioning * minor changes to CI * dart ffi cleanup * update checksums
2024-07-16fix darwin buildsCzarek Nakamoto
2024-06-30fix: wownero seed giving incorrectCzarek Nakamoto
add: pr-comment.yaml
2024-05-05fix wownero issue...Czarek Nakamoto
2024-05-01expose free functionv0.18.3.3-RC42Czarek Nakamoto
2024-04-25update header fileCzarek Nakamoto
2024-04-25fix wownero build in contrib/depends systemv0.18.3.3-RC37Czarek Nakamoto
2024-04-25wownero-seed supportCzarek Nakamoto
2024-04-22yet another difference in wow...v0.18.3.3-RC35Czarek Nakamoto
2024-04-22sync changes to wownero. Wow.v0.18.3.3-RC34Czarek Nakamoto
2024-04-22add missing functionality from for cake's polyseed implementationv0.18.3.3-RC33Czarek Nakamoto
2024-04-11Revert "add polyseed language options"Czarek Nakamoto
This reverts commit a032a20221579d5fb9445b370eec1b6bd4ff653b.
2024-04-11add polyseed language optionsv0.18.3.3-RC22Czarek Nakamoto
2024-04-05add comments explaining what does the code do?Czarek Nakamoto
2024-04-01fix: wownero and monero wallets in the same processv0.18.3.3-RC12Czarek Nakamoto
ci: cache ~/.ccache directory
2024-03-31feat: split MONERO and WOWNERO prefixed functionsv0.18.3.3-RC11Czarek Nakamoto
So basically: when we open the .so file, we define some symbols, and it appears that if we load something else, with the same symbols, under the same thread we cause some funky behaviour - like calling function a wownero function MONERO_Wallet_address() resulting in a monero address being generated. Needless to say, this is undesired, and a blocker for https://github.com/cypherstack/stack_wallet/pull/818 I'm afraid that this may not solve all of our issues (but will solve some significant roadblocks), because of the "genesis block" issue, as output of nm -gDC release/wownero/x86_64-linux-gnu_libwallet2_api_c.so | grep genesis indicate that these functions may share *something* in common across both WOW and XMR libraries. In a case in which this fix won't be sufficient, I think that the way forward would be to close the dynamic libraries, but before we do that I want to check if maybe there is a change to run multiple wallets at once.