Bitcoin Forum
June 21, 2024, 07:01:52 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Web Wallets / Re: Blockchain.info - Bitcoin Block explorer & Currency Statistics on: June 10, 2013, 09:01:35 AM
Hi,
Today at 9:00 AM (French Hour) a payment was made to send my bitcoin to an address I don't know.

I have activated the SMS verification so I don't know how it is possible to do that (I also have a second password to send funds).
The log did not have any row at 9:00 AM.

How is it possible ?
Who can I contact for this problem ?

Thank's, have a nice day

If somebody knows your private keys, he can transfer your BTC without the need to login to blockchain.

- did you import the keys from other wallet?
- do you have strong (both case, digits, symbols, 10+ chars) main password?
Hi, thank's for your answer.
The adresses were generated by Blockchain.info, not generated.
My two passwords have alpha number & special chars and are long (15 chars).
Thank's,

Please, contact Piuk (the owner of BlockChain.info) for assistance. Its important to find out the way how the BTCs left your account.


I sent a PM with this post.
Thank you very much,
2  Economy / Web Wallets / Re: Blockchain.info - Bitcoin Block explorer & Currency Statistics on: June 09, 2013, 09:36:05 PM
Hi,
Today at 9:00 AM (French Hour) a payment was made to send my bitcoin to an address I don't know.

I have activated the SMS verification so I don't know how it is possible to do that (I also have a second password to send funds).
The log did not have any row at 9:00 AM.

How is it possible ?
Who can I contact for this problem ?

Thank's, have a nice day

If somebody knows your private keys, he can transfer your BTC without the need to login to blockchain.

- did you import the keys from other wallet?
- do you have strong (both case, digits, symbols, 10+ chars) main password?



Hi, thank's for your answer.
The adresses were generated by Blockchain.info, not generated.
My two passwords have alpha number & special chars and are long (15 chars).

Thank's,
3  Economy / Web Wallets / Re: Blockchain.info - Bitcoin Block explorer & Currency Statistics on: June 08, 2013, 09:41:41 AM
Hi,
Today at 9:00 AM (French Hour) a payment was made to send my bitcoin to an address I don't know.

I have activated the SMS verification so I don't know how it is possible to do that (I also have a second password to send funds).
The log did not have any row at 9:00 AM.

How is it possible ?
Who can I contact for this problem ?

Thank's, have a nice day
4  Economy / Web Wallets / Re: Blockchain.info - Bitcoin Block explorer & Currency Statistics on: May 13, 2013, 03:51:52 PM
Would be nice if we could have the SatoshiDice bet on the android application Wink

I agree but the problem is it wouldn't get accepted into Google Play.


Oh I see, thank's for your answer  Smiley
5  Economy / Web Wallets / Re: Blockchain.info - Bitcoin Block explorer & Currency Statistics on: May 12, 2013, 05:55:05 PM
Would be nice if we could have the SatoshiDice bet on the android application Wink
6  Bitcoin / Hardware wallets / Re: Bitcoin Wallet for Android on: May 06, 2013, 06:09:22 PM
It's planned, but there is still some work to do, and its not my top priority. One reason is it won't help in cases like yours: If an app has got root, it can probably just capture keypresses or trick you into signing their transaction. Encryption just puts the bar a little bit higher for a successful attack, but its far from a silver bullet.

Yep, I understood it Smiley
Thank you for your answer and the application (amazing app).

Just one more thing, the transaction on the "home" show something like :
1 BTC from ADDRESS

Would be great if ADDRESS was replaced by the label of our address.
7  Bitcoin / Hardware wallets / Re: Bitcoin Wallet for Android on: May 06, 2013, 05:46:45 PM
great app but is there a way to encrypt the wallet ?
Is it not a problem if the wallet in the android application is not encrypted ?

Currently you can't. It should not be a problem because Android already isolates your app private files against all other non-root apps. So as long as you're not running anything as root you should be safe.

Alright thank you Smiley But I use root apps (ES Explorer for example).
Are there plans to implement this feature ?

Thank you Smiley
8  Bitcoin / Hardware wallets / Re: Bitcoin Wallet for Android on: May 06, 2013, 04:30:41 PM
Hi,
great app but is there a way to encrypt the wallet ?

Is it not a problem if the wallet in the android application is not encrypted ?

Thank you Smiley
9  Alternate cryptocurrencies / Altcoin Discussion / Re: Help testing a new litecoin pool. http://litepoolminers.com LTC REWARDS on: May 01, 2013, 12:31:29 PM
MMmmmm what do we do now ?
Seems that there is just 8 workers ATM.

Do you need us to keep mining ?
10  Local / Mining et Hardware / Re: [LTC] Miner solo --> Adresse de réception on: April 30, 2013, 10:23:09 PM
Et bien figure toi qu'avec GUIMiner version Scrypt j'ai pu atteindre 800-900 Kh/s avec une efficiency de 98% =D

Je t'invite à le tester, il m'a l'air diablement efficace avec ces préréglages
11  Alternate cryptocurrencies / Altcoin Discussion / Re: Help testing a new litecoin pool. http://litepoolminers.com LTC REWARDS on: April 30, 2013, 03:30:15 PM
2 more GPU working for you Wink
Not very powerfull (7770 and 7950) but I hope it will help Smiley
12  Other / Beginners & Help / Re: Python-BitcoinRPC on: April 24, 2013, 12:23:16 PM
Hi, thank's for your answer.

I only have one Python installed (3.0 CPython).

When I do a pip freeze, I got :
C:\Python33\Scripts>pip freeze
distribute==0.6.36
python-bitcoinrpc==0.1

EDIT FOUND :
Correct code is :

import bitcoinrpc.authproxy
import pprint

BITCOINRPC = 'http://user:pass@127.0.0.1:8332/'
pp = pprint.PrettyPrinter(indent=4)

bitcoin = bitcoinrpc.authproxy.AuthServiceProxy(BITCOINRPC)

data = bitcoin.getinfo()        # call bitcoin 'getinfo' RPC

But not working on Windows, don't know why. I'll try with PHP
13  Bitcoin / Development & Technical Discussion / [Python-BitcoinRPC] No module AuthProxy on: April 24, 2013, 11:22:00 AM
Hello,

I'm trying to use the python library from jgarzik, https://github.com/jgarzik/python-bitcoinrpc
I've downloaded and run a python setup.py build / install but I cannot import authproxy.

It said that "no module name 'authproxy'" has been found.

What did I do wrong ? All I did is to run setup.py from the lastest source on github.
Is there anything more to do ?

(using CPython on Windows)

Thank you very much,

EDIT :
Pip freeze shows :

C:\Python33\Scripts>pip freeze
distribute==0.6.36
python-bitcoinrpc==0.1


EDIT 2 FOUND :
Correct code is :

import bitcoinrpc.authproxy
import pprint

BITCOINRPC = 'http://user:pass@127.0.0.1:8332/'
pp = pprint.PrettyPrinter(indent=4)

bitcoin = bitcoinrpc.authproxy.AuthServiceProxy(BITCOINRPC)

data = bitcoin.getinfo()        # call bitcoin 'getinfo' RPC

But not working on Windows, don't know why. I'll try with PHP
14  Local / Mining et Hardware / Re: [LTC] Miner solo --> Adresse de réception on: April 24, 2013, 11:19:54 AM
Oula désolé je pensais m'être abonné au sujet  Undecided

Merci beaucoup pour les liens Smiley je fais environ du 700KH/s ce qui est pas mal du tout à mon humble avis Smiley
Je me suis mis sur ozcoin histoire  de miner en pool mais j'ai une efficiency de - de 50% va falloir que je revois affreusement mes réglages.
Merci beaucoup en tout cas   Cheesy
15  Other / Beginners & Help / Python-BitcoinRPC on: April 24, 2013, 11:14:32 AM
Re-created on Development board which is better I think (but I can't delete this topic) :
https://bitcointalk.org/index.php?topic=186285.0


Hello Smiley

I'm trying to use the python library from jgarzik, https://github.com/jgarzik/python-bitcoinrpc

I've downloaded and run a python setup.py build / install but I cannot import authproxy.

It said that "no module name 'authproxy'" has been found.

What did I do wrong ?

Thank you very much,
16  Other / Beginners & Help / Re: [Coinotron] Prox stratum Authorize error on: April 07, 2013, 07:50:23 AM
Oh crap, doesn't work. I let it for 9 hours and on Coinotron I have won nothing (I'm on PPS).
But Proxy and minerd doesn't show any errors.

Any idea why ?

(Part of proxy-mining log (does not show any errors) :
2013-04-07 07:46:43,200 INFO proxy getwork_listener._on_lp_broadcast # LP broadcast for worker 'InsertWokerNameHere.1'
2013-04-07 07:46:43,200 WARNING proxy getwork_listener.render_POST # Worker 'InsertWokerNameHere.1' subscribed for LP
2013-04-07 07:47:11,279 INFO proxy client_service.handle_event # New job 46 forprevhash 38f62a5f, clean_jobs=False
2013-04-07 07:47:42,793 INFO proxy client_service.handle_event # New job 47 forprevhash 38f62a5f, clean_jobs=False
2013-04-07 07:47:45,905 INFO proxy getwork_listener._on_authorized # Worker 'InsertWokerNameHere.1' asks for new work
2013-04-07 07:48:10,296 INFO proxy client_service.handle_event # New job 48 forprevhash 38f62a5f, clean_jobs=False
2013-04-07 07:48:40,483 INFO proxy client_service.handle_event # New job 49 forprevhash 38f62a5f, clean_jobs=False
2013-04-07 07:48:44,904 INFO proxy getwork_listener._on_authorized # Worker 'InsertWokerNameHere.1' asks for new work
2013-04-07 07:49:11,170 INFO proxy client_service.handle_event # New job 50 forprevhash 38f62a5f, clean_jobs=False
2013-04-07 07:49:40,309 INFO proxy client_service.handle_event # New job 51 forprevhash 38f62a5f, clean_jobs=False
2013-04-07 07:49:43,934 INFO proxy getwork_listener._on_authorized # Worker 'InsertWokerNameHere.1' asks for new work

Thank's in advance Smiley
17  Other / Beginners & Help / Re: [Coinotron] Prox stratum Authorize error on: April 06, 2013, 10:55:39 PM
Oh crap, indeed that's better  Smiley
Shame on me.

Thank you very much  Cheesy
18  Other / Beginners & Help / [Coinotron] Prox stratum Authorize error on: April 06, 2013, 10:08:23 PM
Hello Smiley
I saw that Coinotron mining pool is now on Stratum only for LTC.
So I setup a proxy stratum that works, it send worked for my worker.
But when they try to send the work I got a :
Error with server: {"error": {"message": "Unexpected error during authorization", "code": -1}, "id": 0, "result": null}

And on Coinotron I don't see my worker work. I got a hashrate of 0.

What can I do ?
My proxy is connecting fine I got :
2013-04-07 00:09:33,502 INFO proxy mining_proxy.on_connect # Connected to Stratum pool at coinotron.com:3333
2013-04-07 00:09:33,503 INFO proxy mining_proxy.on_connect # Subscribing for mining jobs
2013-04-07 00:09:33,543 WARNING proxy mining_proxy.main # ----------------------
-------------------------------------------------
2013-04-07 00:09:33,545 WARNING proxy mining_proxy.main # PROXY IS LISTENING ON ALL IPs ON PORT 3333 (stratum) AND 8332 (getwork)
2013-04-07 00:09:33,545 WARNING proxy mining_proxy.main # ----------------------
-------------------------------------------------
2013-04-07 00:09:33,630 INFO proxy client_service.handle_event # New job 2519 for prevhash 2afcbf80, clean_jobs=True
2013-04-07 00:09:33,632 INFO proxy client_service.handle_event # Setting new difficulty: 8

Thank you very much,
Nontenda
19  Local / Mining et Hardware / [LTC] Miner solo --> Adresse de réception on: April 04, 2013, 05:34:54 PM
Bonjour à tous Smiley
Alors voilà je me suis lancé un petit litecoind et un minerd en solo sur un serveur hexacore que j'ai en ma possession.

Je me demande cependant deux choses :
1/ Je ne recevrai les LTC (25 ou 50 je ne sais plus) que si je trouve un block c'est cela ?
2/ Dans ce cas, ou iront-ils ? Dans le porte monnaie locale je suppose, c'est à dire que je n'aurai qu'à relancer litecoin-qt pour les voir apparaitre ?

Merci d'avance Smiley

Bonne soirée,
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!