Bitcoin Forum
May 06, 2024, 04:33:56 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 [21] 22 23 24 25 26 27 28 29 »
  Print  
Author Topic: CoinWallet.eu Stress Test Cancelled + Bitcoin Giveaway  (Read 98817 times)
RealMalatesta
Legendary
*
Offline Offline

Activity: 2338
Merit: 1124



View Profile
September 11, 2015, 02:19:31 PM
 #401

If it's Todd's tool that confused you try reading the description on github. It has a pretty good explanation.

Ah, I should get more sleep :-)

Got it, thanks.
1715013236
Hero Member
*
Offline Offline

Posts: 1715013236

View Profile Personal Message (Offline)

Ignore
1715013236
Reply with quote  #2

1715013236
Report to moderator
1715013236
Hero Member
*
Offline Offline

Posts: 1715013236

View Profile Personal Message (Offline)

Ignore
1715013236
Reply with quote  #2

1715013236
Report to moderator
1715013236
Hero Member
*
Offline Offline

Posts: 1715013236

View Profile Personal Message (Offline)

Ignore
1715013236
Reply with quote  #2

1715013236
Report to moderator
The trust scores you see are subjective; they will change depending on who you have in your trust list.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715013236
Hero Member
*
Offline Offline

Posts: 1715013236

View Profile Personal Message (Offline)

Ignore
1715013236
Reply with quote  #2

1715013236
Report to moderator
astroden
Newbie
*
Offline Offline

Activity: 44
Merit: 0



View Profile
September 11, 2015, 02:31:49 PM
 #402

I've an idea how to use bitcoinjs for creating amount of automatic transactions. But can't understand how to get unspent.txHash and unspent.index fastly.

Code:
// Creating a Transaction
tx = new bitcoin.Transaction();
// Add the input (who is paying) of the form [previous transaction hash, index of the output to use]
tx.addInput(unspent.txHash, unspent.index);
// Add the output (who to pay to) of the form [payee's address, amount in satoshis]
tx.addOutput("YOUR ADDRESS HEAR", value);
// Initialize a private key using WIF
key = bitcoin.ECKey.fromWIF("L1uyy5qTuGrVXrmrsvHWHgVzW9kKdrp27wBC7Vs6nZDTF2BRUVwy");
// Sign the first input with the new key
tx.sign(0, pk);
// Print transaction serialized as hex
console.log(tx.toHex());
amaclin
Legendary
*
Offline Offline

Activity: 1260
Merit: 1019


View Profile
September 11, 2015, 02:40:18 PM
 #403

I've an idea how to use bitcoinjs for creating amount of automatic transactions.
But can't understand how to get unspent.txHash and unspent.index fastly.
This is major difficulty for everyone.
But... Think... Is it an only engine for tx creation? Is it an only way to create a transaction?  Grin
everaja
Hero Member
*****
Offline Offline

Activity: 490
Merit: 500


~ScapeGoat~


View Profile
September 11, 2015, 02:41:19 PM
 #404

I am getting this error whenever i try to load sweep the private keys into my wallet..

error: This wallet contains a very large number of small unspent inputs. Ignoring some.

jdebunt
Legendary
*
Offline Offline

Activity: 1596
Merit: 1010


View Profile WWW
September 11, 2015, 02:53:39 PM
 #405

I am getting this error whenever i try to load sweep the private keys into my wallet..

error: This wallet contains a very large number of small unspent inputs. Ignoring some.

You didn't expect easy free Bitcoins, did you? Importing these private keys will stress test the network itself, and anyone trying to do so is doing Coinwallet's dirty work for them.
elmad
Member
**
Offline Offline

Activity: 119
Merit: 10


View Profile
September 11, 2015, 03:29:46 PM
 #406


But... Think... Is it an only engine for tx creation?

ok

Is it an only way to create a transaction?  Grin


What do you mean here? Is there a method to create a transaction without retrieve UTXOs? I dont think so, but I'm just curious about this affirmation.
Maybe did you mean different libraries to use for create transactions?
notme
Legendary
*
Offline Offline

Activity: 1904
Merit: 1002


View Profile
September 11, 2015, 03:30:40 PM
 #407

I am getting this error whenever i try to load sweep the private keys into my wallet..

error: This wallet contains a very large number of small unspent inputs. Ignoring some.

You didn't expect easy free Bitcoins, did you? Importing these private keys will stress test the network itself, and anyone trying to do so is doing Coinwallet's dirty work for them.

Importing the keys will not stress the network, but broadcasting transactions from the UTXOs would.  However, a miner could clear the UTXOs and reap them as fees.  This would ultimately help the network (reduce the UTXO set) and they wouldn't have to broadcast any transactions that would clog the mempool.  The transaction would have to be broadcast to verify the block, but it does not need to take up space in the mempool.

https://www.bitcoin.org/bitcoin.pdf
While no idea is perfect, some ideas are useful.
amaclin
Legendary
*
Offline Offline

Activity: 1260
Merit: 1019


View Profile
September 11, 2015, 03:35:22 PM
 #408

Is there a method to create a transaction without retrieve UTXOs?
Yes, there is.
elmad
Member
**
Offline Offline

Activity: 119
Merit: 10


View Profile
September 11, 2015, 03:55:48 PM
 #409

Is there a method to create a transaction without retrieve UTXOs?
Yes, there is.

Wow. I know that you'll not explain that, I'm going to research  Grin

Thanks for this, I cannot imagine there was such a way Wink
amaclin
Legendary
*
Offline Offline

Activity: 1260
Merit: 1019


View Profile
September 11, 2015, 04:00:20 PM
 #410

Wow. I know that you'll not explain this, I'm going to research this  Grin
Thanks for this, I cannot imagine there was this way Wink
OK. One hint: ...without retrieving utxo yourself.
elmad
Member
**
Offline Offline

Activity: 119
Merit: 10


View Profile
September 11, 2015, 04:16:22 PM
 #411

Wow. I know that you'll not explain this, I'm going to research this  Grin
Thanks for this, I cannot imagine there was this way Wink
OK. One hint: ...without retrieving utxo yourself.

Oh... ok, I thought there was a strange way, but utxos are inputs for the transaction, so I have to know and to sign they. You meant that it's not necessary to import a priv key and build a set of available utxos but I knew already that.

Thanks anyway  Wink
amaclin
Legendary
*
Offline Offline

Activity: 1260
Merit: 1019


View Profile
September 11, 2015, 04:37:50 PM
 #412

Oh... ok, I thought there was a strange way, but utxos are inputs for the transaction, so I have to know and to sign they. You meant that it's not necessary to import a priv key and build a set of available utxos but I knew already that.
I mean that you can transfer this part of work to somebody else.
There are hundreds of persons who already have the set of unspent outputs.
Why not to use their work instead?
elmad
Member
**
Offline Offline

Activity: 119
Merit: 10


View Profile
September 11, 2015, 04:42:25 PM
 #413

Oh... ok, I thought there was a strange way, but utxos are inputs for the transaction, so I have to know and to sign they. You meant that it's not necessary to import a priv key and build a set of available utxos but I knew already that.
I mean that you can transfer this part of work to somebody else.
There are hundreds of persons who already have the set of unspent outputs.
Why not to use their work instead?

Yeah, I understood, I meant that, use a service asking utxos
amaclin
Legendary
*
Offline Offline

Activity: 1260
Merit: 1019


View Profile
September 11, 2015, 04:45:32 PM
 #414

Yeah, I understood, I meant that, use a service asking utxos
Yes, bitcoin-network is a service for this Smiley I did not mean third-party service  Grin
No more hints!  Grin This was my last help!
elmad
Member
**
Offline Offline

Activity: 119
Merit: 10


View Profile
September 11, 2015, 04:49:27 PM
 #415

Yeah, I understood, I meant that, use a service asking utxos
Yes, bitcoin-network is a service for this Smiley I did not mean third-party service  Grin
No more hints!  Grin This was my last help!

Interesting... thanks, I'll think about this  Smiley
bahamapascal
Hero Member
*****
Offline Offline

Activity: 695
Merit: 500



View Profile
September 11, 2015, 05:31:44 PM
 #416

Seems to me that the stress test, also known as Bitcoin Giveaway, has failed to harm the Bitcoin transactions in any way.

While Mem pool is quite large and tx back-log has also grown, it seems that the only back-log are the spam transactions them self.

Real transactions are going through as usual Smiley
onemorexmr
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250



View Profile
September 11, 2015, 05:35:10 PM
 #417

Seems to me that the stress test, also known as Bitcoin Giveaway, has failed to harm the Bitcoin transactions in any way.

While Mem pool is quite large and tx back-log has also grown, it seems that the only back-log are the spam transactions them self.

Real transactions are going through as usual Smiley

does anyone else notice that btct has much "502-bad gateway" today?
imho this stresstest only seems to be a forum stress test Cheesy

bitcoin seems unaffected Wink

XMR || Monero || monerodice.net || xmr.to || mymonero.com || openalias.org || you think bitcoin is fungible? watch this
roshii
Jr. Member
*
Offline Offline

Activity: 34
Merit: 5


View Profile
September 11, 2015, 05:39:05 PM
 #418

Seems to me that the stress test, also known as Bitcoin Giveaway, has failed to harm the Bitcoin transactions in any way.

While Mem pool is quite large and tx back-log has also grown, it seems that the only back-log are the spam transactions them self.

Real transactions are going through as usual Smiley

Indeed, not a big deal for the network as a whole in the end Smiley

Hardware requirement to run a full node is increased however: mine is now using about 1 GB RAM (while meme pool size has decreased already) instead of 350 MB usually... CPU usage seems a little higher as well

In any case, that is/was to be expected with network growth
AlexGR
Legendary
*
Offline Offline

Activity: 1708
Merit: 1049



View Profile
September 11, 2015, 06:40:20 PM
 #419

Hardware requirement to run a full node is increased however: mine is now using about 1 GB RAM (while meme pool size has decreased already) instead of 350 MB usually... CPU usage seems a little higher as well

Try ZRAM, it might reduce the hardware RAM required: https://en.wikipedia.org/wiki/Zram


dooglus
Legendary
*
Offline Offline

Activity: 2940
Merit: 1330



View Profile
September 12, 2015, 08:09:46 AM
 #420

Seems to me that the stress test, also known as Bitcoin Giveaway, has failed to harm the Bitcoin transactions in any way.

While Mem pool is quite large and tx back-log has also grown, it seems that the only back-log are the spam transactions them self.

Real transactions are going through as usual Smiley

I only made one transaction today. It is unconfirmed after 8 hours.

I sent it using "bitcoin-cli sendtoaddress ...", let bitcoin core select its own fee - I think it's meant to use "smart fees" now - and it decided to use a fee of 300 satoshis. FFS.

Just-Dice                 ██             
          ██████████         
      ██████████████████     
  ██████████████████████████ 
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
    ██████████████████████   
        ██████████████       
            ██████           
   Play or Invest                 ██             
          ██████████         
      ██████████████████     
  ██████████████████████████ 
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
    ██████████████████████   
        ██████████████       
            ██████           
   1% House Edge
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 [21] 22 23 24 25 26 27 28 29 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!