NeoNEXT / neoline

A handy NEO wallet in your browser.
https://neoline.io
MIT License
9 stars 3 forks source link

verifyMessage always returns false #136

Closed melanke closed 5 months ago

melanke commented 5 months ago

I am having a strange behavior using verifyMessage with NeoLine. It's always returning false for signed messages with salt, even when copying the results of the signMessage examples it returns false with my wallet.

    const resp = await neoline.signMessage({
        message: 'Hello World',
    })

    const resp2 = await neoline.verifyMessage(resp)

    console.log(resp2) // {result: false}
haiwulei commented 5 months ago

Here is our dAPI documentation, please check the parameters. image

melanke commented 5 months ago

You are right, thanks for your response, sorry for the confusion.