Bitcoin Forum
May 03, 2024, 06:35:02 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 109 110 111 112 113 114 115 116 117 [118] 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 ... 822 »
  Print  
Author Topic: ⚡[ANN]⚡ ▐░Espers [ESP]░▌▐░PoW/PoS░▌▐░HMQ1725 Algo░▌ ▐░New Features░▌  (Read 923761 times)
bitwarrior
Legendary
*
Offline Offline

Activity: 1764
Merit: 1000



View Profile
April 25, 2016, 11:45:47 AM
 #2341

1714761302
Hero Member
*
Offline Offline

Posts: 1714761302

View Profile Personal Message (Offline)

Ignore
1714761302
Reply with quote  #2

1714761302
Report to moderator
1714761302
Hero Member
*
Offline Offline

Posts: 1714761302

View Profile Personal Message (Offline)

Ignore
1714761302
Reply with quote  #2

1714761302
Report to moderator
"If you don't want people to know you're a scumbag then don't be a scumbag." -- margaritahuyan
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714761302
Hero Member
*
Offline Offline

Posts: 1714761302

View Profile Personal Message (Offline)

Ignore
1714761302
Reply with quote  #2

1714761302
Report to moderator
Krista
Sr. Member
****
Offline Offline

Activity: 463
Merit: 250



View Profile
April 25, 2016, 11:48:20 AM
 #2342

Great job! We wait yobit.
ene1980
Hero Member
*****
Offline Offline

Activity: 2002
Merit: 535


View Profile
April 25, 2016, 12:01:26 PM
 #2343

wednesday or today?

Because yesterday i read "next 24 hours".  Huh
bitwarrior
Legendary
*
Offline Offline

Activity: 1764
Merit: 1000



View Profile
April 25, 2016, 12:05:05 PM
 #2344

wednesday or today?

Because yesterday i read "next 24 hours".  Huh


Hey) On yobit will be traded? When adding a date? Smiley

They stated within two business days.
We paid on Friday so I imagine Tuesday or Wednesday we should be listed.
Or at least hear word from them
ene1980
Hero Member
*****
Offline Offline

Activity: 2002
Merit: 535


View Profile
April 25, 2016, 12:13:55 PM
 #2345

wednesday or today?

Because yesterday i read "next 24 hours".  Huh


Hey) On yobit will be traded? When adding a date? Smiley

They stated within two business days.
We paid on Friday so I imagine Tuesday or Wednesday we should be listed.
Or at least hear word from them
Tnx, i miss that post  Cheesy
CosaNostra
Hero Member
*****
Offline Offline

Activity: 843
Merit: 1004



View Profile
April 25, 2016, 12:59:59 PM
 #2346


Thanks for the explanation Griffith, your input is greatly appreciated, I'm a bit disappointed that the dev team didn't acknowledge MY input at all, but it seems that's just the way they are..

Maybe if you help them, they'll get it fixed someday.

Hey OCMiner,

Because i know a mining pool is a business in a sense, and i hate to see a business lose money at no fault of their own and earn a bad rep, im going to give you this bit of friendly advice because i saw it in the code and have since tested it to make sure i wasnt mistaken.

actually... this goes for all services/users that are running a daemon as opposed to a gui client.


Do NOT send a transaction of less than 0.01 from the daemon. there is NO check in the code for a lower limit free transaction that the miner will later consider too low of a priority and never send. you will lose all outputs from that missing input branch. if your services code does not automatically pay a fee to send a tx, then you might lose coins due to this bug.

what i mean by this is:
say you mine a block and get 50,000 coins. you then send 0.001 from the daemon to another wallet (for whatever reason) and it uses that 50k esper block you just mined as input. this is what will happen. it will take that 50k input. mark it as spent. and create a transaction that sends the 0.001 to another wallet and returns the 49999.999 to your wallet. this is the standard for every transaction ever, including bitcoin so dont think this is weird, this is how the system works. that part is normal.

what the problem is, is that the espers daemon (Espersd) will not warn you or preform a check to see if that makes the priority too low for the transaction to be passed into a block due to the way the min tx fee is structured (there isnt one, esp allows free transactions) and will in turn NEVER process that tx into a block. since the 0.001 transaction was not processed, the 49,999.999 is also never reconnected to your wallet and you lose those coins. (they will still show up in your wallet, but because the input for any transaction that includes those coins is now reliant on the 0.001 transaction that was never processed it is impossible to send them anywhere as they too will never be processed due to missing inputs).

until they fix this with the daemon (to be honest the gui client might also do this but i havent tested it and wont be testing it tonight) you should add

paytxfee=0.01

to your Espers.conf file so that this fee will stop you from accidentally losing coins by sending a too low priority transaction because a fee will raise the priority of the transaction causing it to be packaged. i did test it and it does ensure that all transactions down to the lowest sendable amount (0.00055) will be send and will be processed by the miners.

i would go over this in code but its 3:45 am, so you can test it if you'd like (although send coins, say 100 coins, to a NEW wallet on a SEPARATE MACHINE before testing it, you WILL LOSE COINS DURING TEST) or you can take my word for it because i already tested it.

[FULL DISCLOSURE: i originally thought this was a merkle building problem and that is why small transactions with no fee are never processed, but the addition of the fee, which i know for a fact raises the priority in the miner for that transaction, causes the small transactions to be processed leads me to believe it is more than likely a priority issue]

-Griffith


edit: i know from reading this the most obvious fix is just to check to see if the amount sent is below 0.01, which yes. does patch the issue for the future, but it doesnt fix the actual problem at heart. just covers it up, like the government on a tuesday (that last part is a joke for anyone who doesnt get it, its supposed to be funny)


I've used this solution in the same situation (from https://dashtalk.org/threads/frozen-transactions-why-it-happens-and-how-to-fix-it.1649/):

Code:
Solution B:

This solution is slightly more complex, but is still very easy and has always worked for me instantaneously and without fail. What we're going to do is get the raw hex data (the raw binary transaction message converted into its numeric hexadecimal equivalent) and manually re-broadcast it to the network from a different node. If all goes well, this will cause the transaction message to instantly spread across the network and finally make it to all the peers online and, most importantly, the miners and mining pools which will add it to the next block and quickly confirm it. Please follow the steps below:

1) Click on the Transactions tab in your client window and select the frozen transaction

2) Right-click on the transaction and select Show Transaction Details to bring up the Transaction Details pop-up window

3) Now highlight the entire Transaction ID number and copy it to the clipboard (i.e., right-click and select Copy or hit Ctrl+C)
EXAMPLE: 52123febc4f61fe384252a64ee7daebabc3cabae97b7954b90aa70232794d5f0​

4) Now close the Transaction Details window and select Help >> Debug Window in the top menu bar of your client window. The Debug Window has two tabs: Information and Console. You need to switch to the Console tab so we can input commands for the Darkcoin/Bitcoin client.

5) Now we're going to use the getrawtransaction command to obtain the raw transaction data in hex form. The getrawtransaction command accepts a transaction ID number as its parameter. So to use it, we will call the getrawtransaction method and feed it our transaction ID we just copied from the Transaction Details window a moment ago. Type in the following command and press Enter to execute:

getrawtransaction <your transaction ID>​

Obviously, you replace the <your transaction ID> part with your transaction ID number you copied from the Transaction Details window in Step #3. For example, I typed in the following:

getrawtransaction 52123febc4f61fe384252a64ee7daebabc3cabae97b7954b90aa70232794d5f0​

6) As soon as you press enter, there should be a response in the Console window. My console window showed me the following response:

getrawtransaction 52123febc4f61fe384252a64ee7daebabc3cabae97b7954b90aa70232794d5f0

0100000001a09c05d6f32801adc8592ed17214b88d8cfd643448d6cfa5fadd1a0c4b34cdf4000000006b483045022071be3697934aa53ed86f217b34531e3f4f0ecb6c41df8f221f536e5005621ee4022100fe06e286452a3cdecb8fecd67f05d8d7b9357759c9cf86f7500d2aaf2e12b757012103abb9442be150b2499450c29f76880430ee1959b3c419b3dbb8f5289a34cf70ceffffffff01605af405000000001976a914edf6e6c268f77059c701fee4c05276af662fbed988ac00000000​

The "getrawtransaction <tx id>" line will be displayed in a bluish-green color if the command succeeds, and beneath it your client will respond giving you the raw transaction data (in black text). This is what we want! Now we will highlight all of the hexadecimal data (just the black text; don't copy the command line where you typed getrawtransaction <tx id>) and copy it to our clipboard.

7) Now that we have obtained the raw hex data of our frozen transaction, we can get it unfrozen by re-broadcasting it to the network through a different node. You will either need another computer running the client software (Bitcoin-qt or Darkcoin-qt) with a good connection to the network or you will need a friend online to help you complete the final part of the process. You can't do it with the same client from which the transaction originated because it already knows about the transaction and will reject it as invalid or a double-spending tx.

But now we need to copy our raw tx data somewhere that we can copy+paste it from on another computer, or send it to a friend or helper who will help us complete the process. When I did it, I just took my tx data and pasted it up at PasteBin.com so I could get on my other PC and copy it. But you can also send it to a friend (or yourself) through email, Skype or a private message on forums. If you don't have another computer to use and can't find anyone to help you, you can just paste your raw transaction data here or pm me and I will help you. :-)

Alternatively, if you're a more experienced user, you can do this on the same PC from which the problem originated. To do so, you need to navigate to your Bitcoin or Darkcoin data directory (default data directory for Windows users is: C:\Users\<your username>\AppData\Roaming\Darkcoin) and make a copy of it in an easily accessible location (like your desktop). Open the new copy of the data directory and delete the wallet.dat file inside. Just make sure you're not deleting your original wallet.dat file or that you have a back-up copy of it! Once you've done this, you need to launch a second instance of Darkcoin-qt or Bitcoin-qt and tell it to use the new copy of your data directory as its data directory. You do this by launching your client with the -datadir=<path> command and proceeding to the next step...

Example (Windows):
darkcoin-qt.exe -datadir=C:\Users\DRKLord\Desktop\DataDirCopy​

Now that we have a second node (Darkcoin-qt running on different computer, a friend helping us remotely or a second local instance of Darkcoin-qt) we can complete the process by using the sendrawtransaction command and re-broadcasting the frozen transaction to the network. To do so, we must go to Help >> Debug Window >> Console on our other client node to open the Console window and complete the following steps (if you have a friend online helping you, he/she needs to do these steps):

A) Open the Console window in the second Darkcoin/Bitcoin client (or have your friend open their Console and do the following)

B) Now copy the raw transaction data we got from the getrawtransaction command earlier and saved on PasteBin or stored elsewhere

C) We must now input the sendrawtransaction <tx data> command and press the Enter key:

Command:
sendrawtransaction <paste raw hex data here>​
Example:
sendrawtransaction 0100000001a09c05d6f32801adc8592ed17214b88d8cfd643448d6cfa5fadd1a0c4b34cdf4000000006b483045022071be3697934aa53ed86f217b34531e3f4f0ecb6c41df8f221f536e5005621ee4022100fe06e286452a3cdecb8fecd67f05d8d7b9357759c9cf86f7500d2aaf2e12b757012103abb9442be150b2499450c29f76880430ee1959b3c419b3dbb8f5289a34cf70ceffffffff01605af405000000001976a914edf6e6c268f77059c701fee4c05276af662fbed988ac00000000 ​

D) If done correctly your input should show up in the Console now in bluish-green text, as I demonstrated above, and your transaction has now been re-broadcasted to the network and should now fully propagate and soon receive confirmations! :-)​

That's it, we did it! I've never had a problem with this method failing or not working, but if it doesn't work for you do not despair. If you're not an advanced or experienced user you may have just done it wrong and need to get some help. Or maybe there is another problem requiring some help from a more experienced user. In any case, don't panic. Coins don't just evaporate into thin air, and there's always a solution! ;-)

            ▄▄████▄▄
        ▄▄██████████████▄▄
      ███████████████████████▄▄
      ▀▀█████████████████████████
██▄▄       ▀▀█████████████████████
██████▄▄        ▀█████████████████
███████████▄▄       ▀▀████████████
███████████████▄▄        ▀████████
████████████████████▄▄       ▀▀███
 ▀▀██████████████████████▄▄
     ▀▀██████████████████████▄▄
▄▄        ▀██████████████████████▄
████▄▄        ▀▀██████████████████
█████████▄▄        ▀▀█████████████
█████████████▄▄        ▀▀█████████
██████████████████▄▄        ▀▀████
▀██████████████████████▄▄
  ▀▀████████████████████████
      ▀▀█████████████████▀▀
           ▀▀███████▀▀



.SEMUX
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
  Semux uses .100% original codebase.
  Superfast with .30 seconds instant finality.
  Tested .5000 tx per block. on open network
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
ene1980
Hero Member
*****
Offline Offline

Activity: 2002
Merit: 535


View Profile
April 25, 2016, 01:02:44 PM
 #2347

Houston, we have a problem.
Maybe...

Status: 0/unconfirmed
Date: 25/04/2016 14:27
To: EWKV45sKLV5u8QzNwr9JfHjd7mY8PfGXAS
Debit: -305991288.00 ESP
Transaction fee: -0.0001 ESP
Net amount: -305991288.0001 ESP
Transaction ID: 4c5acabcebafd7c8ade594249a22db307cc8b90b2111159736de6c1d9b7274d0

more than 30 min and still 0 confirmation, when i search transaction id on explorer, say me dont exist. Huh
CosaNostra
Hero Member
*****
Offline Offline

Activity: 843
Merit: 1004



View Profile
April 25, 2016, 01:13:42 PM
 #2348

Houston, we have a problem.
Maybe...

Status: 0/unconfirmed
Date: 25/04/2016 14:27
To: EWKV45sKLV5u8QzNwr9JfHjd7mY8PfGXAS
Debit: -305991288.00 ESP
Transaction fee: -0.0001 ESP
Net amount: -305991288.0001 ESP
Transaction ID: 4c5acabcebafd7c8ade594249a22db307cc8b90b2111159736de6c1d9b7274d0

more than 30 min and still 0 confirmation, when i search transaction id on explorer, say me dont exist. Huh

see my post above

            ▄▄████▄▄
        ▄▄██████████████▄▄
      ███████████████████████▄▄
      ▀▀█████████████████████████
██▄▄       ▀▀█████████████████████
██████▄▄        ▀█████████████████
███████████▄▄       ▀▀████████████
███████████████▄▄        ▀████████
████████████████████▄▄       ▀▀███
 ▀▀██████████████████████▄▄
     ▀▀██████████████████████▄▄
▄▄        ▀██████████████████████▄
████▄▄        ▀▀██████████████████
█████████▄▄        ▀▀█████████████
█████████████▄▄        ▀▀█████████
██████████████████▄▄        ▀▀████
▀██████████████████████▄▄
  ▀▀████████████████████████
      ▀▀█████████████████▀▀
           ▀▀███████▀▀



.SEMUX
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
  Semux uses .100% original codebase.
  Superfast with .30 seconds instant finality.
  Tested .5000 tx per block. on open network
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
mnamshares
Full Member
***
Offline Offline

Activity: 120
Merit: 100


View Profile
April 25, 2016, 01:14:50 PM
 #2349

Waiting for the Yobit..........

At the same time don't forget to place your Vote for ESPERS on https://c-cex.com/?id=vote
monoxide
Hero Member
*****
Offline Offline

Activity: 774
Merit: 500



View Profile
April 25, 2016, 01:20:04 PM
 #2350

Waiting for the Yobit..........

At the same time don't forget to place your Vote for ESPERS on https://c-cex.com/?id=vote

Also you can promote in social media to spread knowledge of ESPERS
ene1980
Hero Member
*****
Offline Offline

Activity: 2002
Merit: 535


View Profile
April 25, 2016, 01:28:02 PM
 #2351

Houston, we have a problem.
Maybe...

Status: 0/unconfirmed
Date: 25/04/2016 14:27
To: EWKV45sKLV5u8QzNwr9JfHjd7mY8PfGXAS
Debit: -305991288.00 ESP
Transaction fee: -0.0001 ESP
Net amount: -305991288.0001 ESP
Transaction ID: 4c5acabcebafd7c8ade594249a22db307cc8b90b2111159736de6c1d9b7274d0

more than 30 min and still 0 confirmation, when i search transaction id on explorer, say me dont exist. Huh

see my post above

Ok, tnx  Cheesy

So now just need someone who can enter this in the console:

sendrawtransaction 01000000030d2d11f9c7c7456604e43d279c5e8c61c014488df264f3f2dd81e42a09d4332b00000 0006a47304402201cf677480e8cbd5992f83295e5e04a63f0d4969a35c461eda52af0a57e523643 02205b4c54b7fac544fae78c75501e7ae608453e1e934caf6892c968351f363dce8c012102188f3 fe549979c9bf1572d83aad96eeb7fe921c5c824be65f4602e5b853712efffffffff4468b7b66655 4045a409631c089c31a1d9d6141560f6a2fd8229108079a8073c000000006b483045022100f04ed 43ff61e35a88e1a0d71e9769164b185451767b15ba3774a34b4b7c116560220355508dd52ba3a80 87a68b3829e232140c37d349c2bf3419e92206bed1838ec20121022ce591a19aa5257bc11147efd 06e320d1ab70b44c02c13afeb5d4fdae50e3ebaffffffff573c03213dc094b55ea6ef7d3c1ebcb5 ee2460999382b6a1275d2c9bcad7bae50c0000006a473044022005c03f77ed8ca4618655fefe7d6 c634eb6ce8136bb88a76fcfe385092f7df53302207a2211d6ba6f164a988716b37c6b703796de43 99981b450f39fd55f4d25c8d99012102188f3fe549979c9bf1572d83aad96eeb7fe921c5c824be6 5f4602e5b853712efffffffff0200db336ad41b00001976a914906964c42631b57dc0cbf30c9ae0 0f520cef1fd488acac000000000000001976a91470d69c3e04eaede2d3ce478f93e24ebfc8c9786 288ac00000000

im right?
monoxide
Hero Member
*****
Offline Offline

Activity: 774
Merit: 500



View Profile
April 25, 2016, 01:34:09 PM
 #2352


Awesome! Great things coming to ESPERS!
Papajager
Hero Member
*****
Offline Offline

Activity: 784
Merit: 508


View Profile
April 25, 2016, 01:38:02 PM
 #2353

When ESP/ETH ? Grin
DigitalCurrencyConsultant
Hero Member
*****
Offline Offline

Activity: 671
Merit: 1000



View Profile
April 25, 2016, 01:42:01 PM
 #2354

When ESP/ETH ? Grin
That today friend is your job  Grin Grin Cheesy Cheesy

coingecko

on the moon yet?[/center]
NOjust
Sr. Member
****
Offline Offline

Activity: 318
Merit: 250


View Profile
April 25, 2016, 01:45:26 PM
 #2355

wednesday or today?

Because yesterday i read "next 24 hours".  Huh

Done for that?

SwedishGirl
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


Looking for shmexy coins!


View Profile
April 25, 2016, 01:51:45 PM
 #2356

Whe is the new giveaway starting? I missed the initial one, but would love to get some espers.
Billyboy4022
Full Member
***
Offline Offline

Activity: 131
Merit: 100


View Profile
April 25, 2016, 02:01:32 PM
 #2357

When i start mining with the wallet , it kill my Ether mining with GPU Sad
bitwarrior
Legendary
*
Offline Offline

Activity: 1764
Merit: 1000



View Profile
April 25, 2016, 02:08:57 PM
 #2358

When i start mining with the wallet , it kill my Ether mining with GPU Sad

Maybe you can allocate less of the processing power from the Espers wallet so that you can continue mining via GPU for eth. Try opening the console on the wallet and type "setgenerate true 2" which indicates 2 threads for the cpu mining, just add threads as it goes  and observe on how it affects your GPU mining.
CosaNostra
Hero Member
*****
Offline Offline

Activity: 843
Merit: 1004



View Profile
April 25, 2016, 02:09:19 PM
 #2359

Houston, we have a problem.
Maybe...

Status: 0/unconfirmed
Date: 25/04/2016 14:27
To: EWKV45sKLV5u8QzNwr9JfHjd7mY8PfGXAS
Debit: -305991288.00 ESP
Transaction fee: -0.0001 ESP
Net amount: -305991288.0001 ESP
Transaction ID: 4c5acabcebafd7c8ade594249a22db307cc8b90b2111159736de6c1d9b7274d0

more than 30 min and still 0 confirmation, when i search transaction id on explorer, say me dont exist. Huh

see my post above

Ok, tnx  Cheesy

So now just need someone who can enter this in the console:

sendrawtransaction 01000000030d2d11f9c7c7456604e43d279c5e8c61c014488df264f3f2dd81e42a09d4332b00000 0006a47304402201cf677480e8cbd5992f83295e5e04a63f0d4969a35c461eda52af0a57e523643 02205b4c54b7fac544fae78c75501e7ae608453e1e934caf6892c968351f363dce8c012102188f3 fe549979c9bf1572d83aad96eeb7fe921c5c824be65f4602e5b853712efffffffff4468b7b66655 4045a409631c089c31a1d9d6141560f6a2fd8229108079a8073c000000006b483045022100f04ed 43ff61e35a88e1a0d71e9769164b185451767b15ba3774a34b4b7c116560220355508dd52ba3a80 87a68b3829e232140c37d349c2bf3419e92206bed1838ec20121022ce591a19aa5257bc11147efd 06e320d1ab70b44c02c13afeb5d4fdae50e3ebaffffffff573c03213dc094b55ea6ef7d3c1ebcb5 ee2460999382b6a1275d2c9bcad7bae50c0000006a473044022005c03f77ed8ca4618655fefe7d6 c634eb6ce8136bb88a76fcfe385092f7df53302207a2211d6ba6f164a988716b37c6b703796de43 99981b450f39fd55f4d25c8d99012102188f3fe549979c9bf1572d83aad96eeb7fe921c5c824be6 5f4602e5b853712efffffffff0200db336ad41b00001976a914906964c42631b57dc0cbf30c9ae0 0f520cef1fd488acac000000000000001976a91470d69c3e04eaede2d3ce478f93e24ebfc8c9786 288ac00000000

im right?

Seems like incomplete string or something else wrong. Are you sure you've copied all right?

            ▄▄████▄▄
        ▄▄██████████████▄▄
      ███████████████████████▄▄
      ▀▀█████████████████████████
██▄▄       ▀▀█████████████████████
██████▄▄        ▀█████████████████
███████████▄▄       ▀▀████████████
███████████████▄▄        ▀████████
████████████████████▄▄       ▀▀███
 ▀▀██████████████████████▄▄
     ▀▀██████████████████████▄▄
▄▄        ▀██████████████████████▄
████▄▄        ▀▀██████████████████
█████████▄▄        ▀▀█████████████
█████████████▄▄        ▀▀█████████
██████████████████▄▄        ▀▀████
▀██████████████████████▄▄
  ▀▀████████████████████████
      ▀▀█████████████████▀▀
           ▀▀███████▀▀



.SEMUX
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
  Semux uses .100% original codebase.
  Superfast with .30 seconds instant finality.
  Tested .5000 tx per block. on open network
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
4emily
Hero Member
*****
Offline Offline

Activity: 577
Merit: 500


View Profile
April 25, 2016, 02:15:36 PM
 #2360

Has anyone-else noticed syncing taking longer than it did? 1st noticed it myself last night running the 0.8.0.2 version, then upgraded this morning to 0.8.0.3 and same thing - slower than before  Huh
Pages: « 1 ... 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 109 110 111 112 113 114 115 116 117 [118] 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 ... 822 »
  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!