Bitcoin Forum
April 27, 2024, 08:54:21 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 7 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 »
1121  Local / Português (Portuguese) / Re: Ganhe um cartão bitcoin!!! on: April 12, 2012, 04:51:28 PM
Pessoal

Receberam os cartões em suas residências? Desculpem pelos atrasos, o primeiro é assim mesmo né? rs

Olha só, achei alguém que nos copiou!

http://paymyaddress.com/
1122  Local / Português (Portuguese) / Baixa liquidez Brasil!!! on: April 12, 2012, 04:23:40 PM
Pessoal

Temos 500 usuários no mercado bitcoin (MB), e mesmo assim, ocorre de passar um dia inteiro sem nenhuma negociação concretizada se quer. Você já negociou no MB? Porque parou? Negocia diariamente? Na sua opnião, o que falta para aumentar a liquidez do MB? Como trazer mais pessoas ao MB?
1123  Local / Português (Portuguese) / R$4mil em BTC on: April 10, 2012, 12:22:54 AM
Estou com R$4mil para comprar em BTC, preferencialmente pelo Mercado Bitcoin (MB)...

Quem tiver isso tudo pra vender só falar...
1124  Local / Português (Portuguese) / Re: [OFF TOPIC] X-Money. on: April 10, 2012, 12:20:19 AM
XMoney é horrível...

Openbravo, openerp são bons.... da uma olhada nesses....

não perca tempo montando a infraestrutura, baixe as máquinas virtuais já preparadinhas...

abs
1125  Local / Português (Portuguese) / Re: Data Center de domínio público dedicado aos garimpeiros e além! on: April 10, 2012, 12:16:28 AM
Gostaria muito de ver isso tudo se tornar realidade...

Sugestão:

Montem um plano de negócio, um pith panel (apresentação de 2 minutos), que consigo investidores. Se a idéia for boa, pessoal poe grana.
1126  Local / Português (Portuguese) / Re: Mercado Bitcoin: Thread Oficial on: April 10, 2012, 12:10:37 AM
Primeiro: sou fã do MB, sugestões:

1) Aceitar transferência online dos maiores bancos do brasil (agilizaria muito as negociações = + liquidez)
2) Stop loss / gain
3) Receber via email, twitter, sms ordens de vendas (opcional para cada usuário)
4) Lançar ordens de compra e venda via sms (se quiser eu ajudo)
1127  Local / Mineração em Geral / Re: Custo de produção de 1 Bitcoin - Dificuldade 1307728.36 on: March 30, 2012, 07:47:24 PM
Existe um site que mostra em tempo real a dificuldade....

vamos manter esse atualizado? a dificuldade subiu

1626553


1128  Local / Português (Portuguese) / Re: Preciso de servidor on: March 25, 2012, 02:27:15 PM
Comprei um....rs (uma caixa de cerveja)...rs

Em breve, o sistema desenvolvido estará no ar... e free...
1129  Local / Português (Portuguese) / Preciso de servidor on: March 21, 2012, 12:47:43 AM
To precisando de um servidor, alguém ai tem pra vender?

Ps. sistema bitcoin
1130  Local / Português (Portuguese) / Re: Ganhe um cartão bitcoin!!! on: March 20, 2012, 12:13:27 PM
Prezados ganhadores!

Na segunda-feira os cartões foram enviados à confeccção, aguardem que enviaremos logo-logo ao endereço informado.

Abraços!
1131  Local / Português (Portuguese) / Re: Caindo Como Uma Pedra! on: March 20, 2012, 12:11:37 PM
Ao meu ver:

Está acompanhando o mercado internacional...

Logo ele vai subir novamente...
1132  Bitcoin / Development & Technical Discussion / Re: Generate address on: March 15, 2012, 11:49:03 AM
I think equals you. But the question still continue, what IP is correct to fill?

Not sure that that loopback address is for . . .

Generally if you are adding explicit IP addresses then you are hardwiring a connection to a particular node.
Perhaps that code example is assuming you are connecting to a bitcoind running on localhost ?


1133  Bitcoin / Development & Technical Discussion / Re: Generate address on: March 13, 2012, 12:49:46 PM
OK, i will read carefull... One question, what ip address i need to put here:

peerGroup.AddAddress(new PeerAddress(IPAddress.Loopback));

With your PeerGroup errors I think it is due to initialisation.
If you have a look at the multibit class that does my PeerGroup initialisation it will help:
https://github.com/jim618/multibit/blob/v0.3/src/main/java/org/multibit/network/MultiBitService.java

Have a look at the constructor and createNewPeerGroup method.

The main points are:
+ You need to set the maximum number of Peers for the PeerGroup. (This is probably causing your error).
+ You need to specify either the Peers to connect to (i.e. explicitly) or set the method of PeerDiscovery. (how to find peers).

When the PeerGroup starts up it will take a few seconds to discovery the peers, open a socket to them etc.  
You will not be able to send straight away so the best thing to do is attach a PeerEventListener which tells you things like:
+ PeerGroup found a new peer
+ PeerGroup lost a peer
+ number of active peers.

Once your PeerGroup is initialised and has an active Peer you will be in a position to send.


(P.S.  The bitcoinj code - which I presume the C# code is a port of - does not allow for the addition of fees to sends.  It is on Mike's todo list.   If you want to do a simple 'just add 0.005 BTC" have a look at the method:
https://github.com/jim618/multibit/blob/v0.3/src/main/java/com/google/bitcoin/core/Wallet.java completeTx

It simply sends a little bit more/ does not take as much back in change to give the miner the fee.


1134  Bitcoin / Development & Technical Discussion / Re: Generate address on: March 13, 2012, 12:33:37 PM
OK, now the first problem i was found the solution:

1)This error message: Mismatched version number, trying to cross networks? 0 vs 111
I tried to use a test address with a production network, and it can´t do. Test address with test network and production address with production network, now this is fine.

But, the error bellow still continue:
On this line: peerGroup.DownloadBlockChain();
This error message: Non-negative number required. Parameter name: maximumCount
or
Line: var sendTx = carteira.SendCoins(peerGroup, endereco, carteira.GetBalance());
Error: Failed to broadcast tx to all connected peers



I change the propert file as you said, but:

1) When i use: NetworkParameters.TestNet()

On this line: Address endereco = new Address(@params, destino);
This error message: Mismatched version number, trying to cross networks? 0 vs 111
or
On this line: peerGroup.DownloadBlockChain();
This error message: Non-negative number required. Parameter name: maximumCount

2) When i use: NetworkParameters.ProdNet()
On this line: peerGroup.DownloadBlockChain();
This error message: Non-negative number required. Parameter name: maximumCount
or
Line: var sendTx = carteira.SendCoins(peerGroup, endereco, carteira.GetBalance());
Error: Failed to broadcast tx to all connected peers

Can you help me?
Thks


Hi Andre,

The startup parameters to get multibit to run in test is slightly different from the Satoshi client - it is set in a properties file.

The details are here:
https://github.com/jim618/multibit/blob/master/README

The test blockchain has a 'test' in the name to distinguish it from the production "multibit.blockchain" which I think is the one you are using.


1135  Bitcoin / Development & Technical Discussion / Re: Generate address on: March 13, 2012, 01:56:23 AM
I change the propert file as you said, but:

1) When i use: NetworkParameters.TestNet()

On this line: Address endereco = new Address(@params, destino);
This error message: Mismatched version number, trying to cross networks? 0 vs 111
or
On this line: peerGroup.DownloadBlockChain();
This error message: Non-negative number required. Parameter name: maximumCount

2) When i use: NetworkParameters.ProdNet()
On this line: peerGroup.DownloadBlockChain();
This error message: Non-negative number required. Parameter name: maximumCount
or
Line: var sendTx = carteira.SendCoins(peerGroup, endereco, carteira.GetBalance());
Error: Failed to broadcast tx to all connected peers

Can you help me?
Thks


Hi Andre,

The startup parameters to get multibit to run in test is slightly different from the Satoshi client - it is set in a properties file.

The details are here:
https://github.com/jim618/multibit/blob/master/README

The test blockchain has a 'test' in the name to distinguish it from the production "multibit.blockchain" which I think is the one you are using.


1136  Local / Português (Portuguese) / Re: Como gerar carteira bitcoin on: March 12, 2012, 07:54:46 PM
Obrigado pelas respostas...

Isso mesmo que eu queria...
1137  Bitcoin / Development & Technical Discussion / Re: Generate address on: March 12, 2012, 07:53:40 PM
Thank you for your help...

I downloaded the multitbit (it´s very nice!) and run -testnet.

Later a put my program to C:\Users\André\AppData\Roaming\MultiBit.blockchain

and when ai try:Address endereco = new Address(@params, destino); or peerGroup.DownloadBlockChain();

the error message apper:

Mismatched version number, trying to cross networks? 0 vs 111

The format and contents of the blockchain in the Satoshi client and in bitcoinj are completely different.
I would advise keeping your files in a separate directory in your roaming profile directory.
By calling the bitcoinj blockchain blk001.dat and putting it in the bitcoin directory you risk getting the wrong files being used by your program and the Satoshi client. This is most likely what is causing your error report.

For your application I would create a directory specially for it in your roaming profile as you will no doubt want to put your configuration data and settings in there as you develop your app.

It is a bit idiosyncratic where the user application data is stored on different operating systems. I have written a little help note for it for multibit (which you can easily adapt) here:

http://multibit.org/help_troubleshooting.html

It is just a convention but both bitcoinj and multibit (based on bitcoinj) call their blockchains:
*.blockchain

You also want to distinguish between the production and test blockchains (you are doing this already in your path name but I wanted to mention it)


1138  Bitcoin / Development & Technical Discussion / Re: Generate address on: March 12, 2012, 01:21:43 AM
OK, thank you, now i created the pair of keys and the address. But, i can´t download the blockchain, still showing for me: "Bad version number: 250"

var @params = NetworkParameters.TestNet();// : NetworkParameters.ProdNet();

           
            EcKey chaves = resgatarParChaves(chavePrimaria);
            Wallet carteira = criarCarteira(chaves);
            using (var blockStore = new BoundedOverheadBlockStore(@params, new FileInfo(@"C:\Users\André\AppData\Roaming\Bitcoin\testnet\blk0001.dat")))
            {


//error on this line:
using (var blockStore = new BoundedOverheadBlockStore(@params, new FileInfo(@"C:\Users\André\AppData\Roaming\Bitcoin\testnet\blk0001.dat")))
            {
1139  Bitcoin / Development & Technical Discussion / Generate address on: March 09, 2012, 10:21:06 PM
Dears

How can i generate random address and private key using BitcoinJ?

Thank you
1140  Local / Português (Portuguese) / Re: Ganhe um cartão bitcoin!!! on: March 09, 2012, 08:35:53 PM
Olá Pessoal!

Estou em casa de molho ainda! Segunda-feira vou enviar ao blog os ganhadores da promoção, aguardem...

E obrigado pela torcida.
Abs
Pages: « 1 ... 7 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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!