Bitcoin Forum
May 26, 2024, 02:17:52 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 [58] 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 ... 146 »
1141  Bitcoin / Electrum / Re: [ANNOUNCE] Electrum - a new thin client on: May 26, 2012, 05:47:35 AM
I'm on angstrom still and when I followed the instructions found here: https://en.bitcoin.it/wiki/Electrum#How_to_send_a_transaction_with_an_offline_wallet

I get stuck at the sendtx command and get the following terminal output:
(The file name is indeed called tx_file1 - not typo)

Quote
:~/electrum# electrum sendtx `cat tx_file1`
Connected to electrum.bitcoins.sk:50001
Traceback (most recent call last):
  File "/usr/bin/electrum", line 448, in <module>
    r, h = wallet.sendtx( tx )
  File "/usr/lib/python2.7/site-packages/electrum/wallet.py", line 813, in sendtx
    tx_hash = Hash(tx.decode('hex') )[::-1].encode('hex')
  File "/usr/lib/python2.7/encodings/hex_codec.py", line 42, in hex_decode
    output = binascii.a2b_hex(input)
TypeError: Odd-length string
Thanks mate



*Updated:

I tried the payto command as well and got a different error

Quote
electrum payto 17W7Hpno2CiD9Ma3YBrZfLaQrx61buFxXE 0001
Connected to electrum.bitcoins.sk:50001
Password:
Traceback (most recent call last):
  File "/usr/bin/electrum", line 429, in <module>
    fee = options.tx_fee, change_addr = change_addr, from_addr = from_addr )
  File "/usr/lib/python2.7/site-packages/electrum/wallet.py", line 799, in mktx
    raise BaseException("Not enough funds")
BaseException: Not enough funds
None

1142  Bitcoin / Electrum / Re: [ANNOUNCE] Electrum - a new thin client on: May 26, 2012, 05:38:16 AM
Quote
(I hope you have this problem because you are using the current git version)

or not?
Oh yeah forgot to answer that because i was so excited it worked: yes I git cloned electrum directly to the angstrom box

in that case you should have a file called mki18n.py
I guess I typed it in wrong when I tried to run it -- so to answer your question yeah its there.
1143  Bitcoin / Electrum / Re: [ANNOUNCE] Electrum - a new thin client on: May 26, 2012, 04:40:58 AM
Quote
(I hope you have this problem because you are using the current git version)

or not?
Oh yeah forgot to answer that because i was so excited it worked: yes I git cloned electrum directly to the angstrom box
1144  Bitcoin / Electrum / Re: [ANNOUNCE] Electrum - a new thin client on: May 26, 2012, 04:06:38 AM
Might I suggest you add a
Code:
sys.exit(0)

at the end of the while(True) in the watch_addresses file and then add an option to allow the script to end after its looped?

I've been trying to call this python script from another language and it just sits there awaiting for the connection to end and it never did i spent hours trying to figure out why. Anyways my situation is probably really specific but still adding a comment in thurr to reduce future programmers frustration or something. anyways great work mate, I've learned a lot about bitcoin tearing your library apart!

indeed, an option to end the loop would be useful
In fact I am thinking of making it a more general purpose program, that calls a command-line program each time an address receives or sends a payment
Something similar to the linux "at" command.



Would be interesting to see how that comes out, I don't know python well enough to contribute to anything but I see the amount of time it took to create everything..

I'm having an issue on an angstrom linux flavor maybe you could help me out with this Its a fresh install python version 2.7.2 and i installed electrum with no bugs(with the edcsa, slowaes packages installed) but i get the following error
Quote
Traceback (most recent call last):
  File "setup.py", line 18, in <module>
    for lang in os.listdir('locale'):
OSError: [Errno 2] No such file or directory: 'locale'


What shall I do?  (I'm guessing for a quick fix I should look through the python and set the locale but i thought you'd like to know bow this error.)

just create the locale dir, or run mki18n.py
(I hope you have this problem because you are using the current git version)


To those who run into this issue I found:
I couldn't find where mki18n.py was so I just created one directory named "locale" (with out quotations) inside the electrum folder and the elctrum setup.py install file didn't return any errors and seems to be working fine thus far. Thanks again thomasV
1145  Bitcoin / Electrum / Re: [ANNOUNCE] Electrum - a new thin client on: May 25, 2012, 03:24:09 PM
Might I suggest you add a
Code:
sys.exit(0)

at the end of the while(True) in the watch_addresses file and then add an option to allow the script to end after its looped?

I've been trying to call this python script from another language and it just sits there awaiting for the connection to end and it never did i spent hours trying to figure out why. Anyways my situation is probably really specific but still adding a comment in thurr to reduce future programmers frustration or something. anyways great work mate, I've learned a lot about bitcoin tearing your library apart!

indeed, an option to end the loop would be useful
In fact I am thinking of making it a more general purpose program, that calls a command-line program each time an address receives or sends a payment
Something similar to the linux "at" command.



Would be interesting to see how that comes out, I don't know python well enough to contribute to anything but I see the amount of time it took to create everything..

I'm having an issue on an angstrom linux flavor maybe you could help me out with this Its a fresh install python version 2.7.2 and i installed electrum with no bugs(with the edcsa, slowaes packages installed) but i get the following error
Quote
Traceback (most recent call last):
  File "setup.py", line 18, in <module>
    for lang in os.listdir('locale'):
OSError: [Errno 2] No such file or directory: 'locale'


What shall I do?  (I'm guessing for a quick fix I should look through the python and set the locale but i thought you'd like to know bow this error.)
1146  Bitcoin / Electrum / Re: [ANNOUNCE] Electrum - a new thin client on: May 25, 2012, 12:47:34 PM
Might I suggest you add a
Code:
sys.exit(0)

at the end of the while(True) in the watch_addresses file and then add an option to allow the script to end after its looped?

I've been trying to call this python script from another language and it just sits there awaiting for the connection to end and it never did i spent hours trying to figure out why. Anyways my situation is probably really specific but still adding a comment in thurr to reduce future programmers frustration or something. anyways great work mate, I've learned a lot about bitcoin tearing your library apart!
1147  Bitcoin / Electrum / Re: [ANNOUNCE] Electrum - a new thin client on: May 25, 2012, 11:53:22 AM
Ah! was looking in the wrong spot -- thanks mate!
1148  Bitcoin / Electrum / Re: [ANNOUNCE] Electrum - a new thin client on: May 25, 2012, 10:43:45 AM
I'm having difficulties finding the scripts for running an electrum server?
1149  Bitcoin / Bitcoin Discussion / Re: BTC or $ ? on: May 25, 2012, 10:41:46 AM
OP, whatever you were trying to achieve you earned an ignore from me.

Edit : on 2nd though you could have edited your OP instead !

Not sure if your trying to tell me something or just gloating in a unusual way....?
1150  Bitcoin / Bitcoin Discussion / Re: BTC or $ ? on: May 25, 2012, 02:43:35 AM
I agree also only cuz you have a boxee Boxxy avatar tho.....

lrn2spell.

You shouldn't hinder progress of a conversation for something so small.






Grin

lol i realize there is a difference and i acknowledge that I misspelled it but do we have to go through all this trouble because everyone thought i mistaken his avatar of a makeup face women for that electronic device? well you'd be half right...
1151  Bitcoin / Bitcoin Discussion / Re: BTC or $ ? on: May 25, 2012, 01:38:04 AM
I agree also only cuz you have a boxee Boxxy avatar tho.....

lrn2spell.

You shouldn't hinder progress of a conversation for something so small.
1152  Bitcoin / Project Development / Re: A new Bitcoin search engine and content aggregator - www.bitcoinsphere.com on: May 25, 2012, 01:36:13 AM
Hi everyone,

we'd like to invite you to come check out a new search engine and content aggregator:

http://www.bitcoinsphere.com

There, you can search the web for bitcoin related sites and also submit your site to our aggregator and index for others to see, if you have one.

http://www.bitcoinsphere.com/Submit.aspx



Its hard to read through the results -- Maybe some contrasting colors and different font sizes might help.. nice work mate!
1153  Bitcoin / Electrum / Re: [ANNOUNCE] Electrum - a new thin client on: May 25, 2012, 01:25:56 AM
What do you think of a "half-offline" wallet feature?

The client would never write the seed to the electrum.dat file. The only way you could spend money would be to enter in your key passphrase at startup. When the app closes, the electrum.dat file gets deleted.

Also, can we get the columns in the displays to sort when the headers are clicked?

What's wrong with mktx?
https://en.bitcoin.it/wiki/Electrum#List_of_commands
Whooops ment to say sendtx
1154  Bitcoin / Electrum / Re: [ANNOUNCE] Electrum - a new thin client on: May 25, 2012, 12:17:39 AM
What do you think of a "half-offline" wallet feature?

The client would never write the seed to the electrum.dat file. The only way you could spend money would be to enter in your key passphrase at startup. When the app closes, the electrum.dat file gets deleted.

Also, can we get the columns in the displays to sort when the headers are clicked?

What's wrong with mktx?
https://en.bitcoin.it/wiki/Electrum#List_of_commands
1155  Bitcoin / Bitcoin Discussion / Re: BTC or $ ? on: May 24, 2012, 11:36:11 PM
BTC

They're bitcoins, not bitdollars.

I do agree, the thai baht symbol shouldn't be used, it should be Ƀ

I agree also only cuz you have a boxee avatar tho.....
1156  Bitcoin / Bitcoin Discussion / Re: BTC or $ ? on: May 24, 2012, 04:29:00 PM
All those are fail, and the thai baht chiefly because it is already a currency symbol. This is better: http://www.ecogex.com/bitcoin/

Ƀ




I can never get this symbol to work in websites and other online forms/forums so I'm not quite sure about this one. i could just be unicode-tarded.
1157  Bitcoin / Bitcoin Discussion / Re: BTC or $ ? on: May 24, 2012, 07:57:38 AM
BTC is more clear than $  Smiley

How about ฿ ?
kind of an easy one to pick, we are all captivated by bitcoins here, but for me its specifically because they are not $
I guess i didn't think about the ambiguity I was presenting.... I ment BTC or $ as far as reading/displaying/writing...

Its wayy more confusing with that baht symbol i think
1158  Bitcoin / Bitcoin Discussion / Re: BTC or $ ? on: May 24, 2012, 07:44:29 AM
kind of an easy one to pick, we are all captivated by bitcoins here, but for me its specifically because they are not $
I guess i didn't think about the ambiguity I was presenting.... I ment BTC or $ as far as reading/displaying/writing...
1159  Bitcoin / Bitcoin Discussion / BTC or $ ? on: May 24, 2012, 07:21:51 AM
Take your pick......
1160  Economy / Marketplace / Re: Looking for merchants like you to start selling on & automated trusted website! on: May 24, 2012, 06:00:56 AM
Fixed issue where when you went back to edit a product that the BTC/USD type cost would always reset to BTC type unless manually set by the merchant before pressing Update/save.

Pages: « 1 ... 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 [58] 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 ... 146 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!