Coder Social home page Coder Social logo

Comments (7)

turcane avatar turcane commented on July 19, 2024

Tested also with a seed with just 1 transaction and 1 account.
Same result -> Crash

from bitcoinspv.

keeshux avatar keeshux commented on July 19, 2024

At least it's a "controlled crash", i.e. the library itself is raising an exception, because the path for the WSHDWallet object was not set. As suggested, you must invoke saveToPath: at least once when autosave is enabled, otherwise the wallet wouldn't know where to save. I understand it's not so obvious and can be improved, but it's how it is now.

Can you please post the code you described in the above steps instead?

from bitcoinspv.

turcane avatar turcane commented on July 19, 2024

I've created bridging header, this is my code:

    let parameters = WSParametersForNetworkType(WSNetworkTypeMain)
    let seed = WSSeedMakeFromISODate("...some mnemonic...", "2016-09-29")
    let store = WSMemoryBlockStore.init(parameters: parameters)
    let wallet = WSHDWallet.init(parameters: parameters, seed: seed)
    wallet?.save(toPath: "/")
    let downloader = WSBlockChainDownloader.init(store: store, wallet: wallet)
    let peerGroup = WSPeerGroup.init(parameters: parameters)
    peerGroup?.startConnections()
    peerGroup?.startDownload(with: downloader)

Also crashing if "shouldAutoSave" is set to false.
I can provide you whole project, if this helps

from bitcoinspv.

keeshux avatar keeshux commented on July 19, 2024

I think it's the quickest option, send it over to me via email.

from bitcoinspv.

turcane avatar turcane commented on July 19, 2024

I will invite you to the private project. Please don't spend coin, which are on the seed. But you can use them for testing purposes :)

/edit
Invited. I tried it with a real device (iPhone 7) and iPhone 5 Simulator. Same result. On iOS10 of course.

from bitcoinspv.

keeshux avatar keeshux commented on July 19, 2024

@JediWed

- (BOOL)saveToPath:(NSString *)path
{
    WSExceptionCheckIllegal(path);

    @synchronized (self) {
        if (![NSKeyedArchiver archiveRootObject:self toFile:path]) {
            return NO;
        }
        DDLogInfo(@"Saved wallet to %@", path);
        _path = path;
        return YES;
    }
}

I hadn't noticed that you're trying to save to /, the result is that archiveRootObject obviously fails. You should save files to app's sandbox directories instead. Generally speaking, you must ensure that saveToPath: succeeds before serializing the wallet.

I'm adding a warning just in case, but this is a non-issue. Closing.

from bitcoinspv.

turcane avatar turcane commented on July 19, 2024

Great, thank you very much!

from bitcoinspv.

Related Issues (10)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.