Bitcoin Forum

Bitcoin => Electrum => Topic started by: drdops on September 13, 2013, 10:17:52 AM



Title: cant sign a message with electrum
Post by: drdops on September 13, 2013, 10:17:52 AM
Im using electrum as a wallet-  a seedless wallet version ( it can receive bitcoin but not send). To send i need to go to an offline pc that i have and import raw data etc..
How do I send a signed message from my original sending address ? ( Ican see the address in receive tab)
I have right clicked on the address and select 'sign message' then filled in message details- what do i put in the signature section?
When I hit sign I get- 'NoneType' object has no attribute'_getitem_'

Thanks


Title: Re: cant sign a message with electrum
Post by: Abdussamad on September 14, 2013, 09:06:16 AM
You can't sign without the private key. So you need to use the offline computer.


Title: Re: cant sign a message with electrum
Post by: pinoye on September 14, 2013, 09:29:40 AM
I also have a question about signing message in the console of electrum.
I tried the function
signmessage()
which suggest 3 arguments have to be given. I wonder which 3?
I tried
signmessage(address, message), but return a false response.
I check documentation web of electrum.org, as well as google, without luck no information provided.

Could anyone show how to use signmessage() function in the console?


Title: Re: cant sign a message with electrum
Post by: dserrano5 on September 14, 2013, 09:41:05 AM
Could anyone show how to use signmessage() function in the console?

Code:
>> signmessage ('1abc...', 'message')

Yeah two arguments actually. Some Python internals are exposed in this console.


Title: Re: cant sign a message with electrum
Post by: pinoye on September 14, 2013, 02:14:59 PM

Code:
>> signmessage ('1abc...', 'message')

Yeah two arguments actually. Some Python internals are exposed in this console.

It helps, thanks a lot.