Bitcoin Forum
June 16, 2024, 12:14:48 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 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 ... 215 »
2221  Bitcoin / Bitcoin Technical Support / Re: Bought Bitcoins, Sent them to a wallet I unistalled. 1100$ Transaction on: September 29, 2015, 02:05:09 PM
I am on windows I used multibit

Hit Win+R, it opens the run window, enter %APPDATA% and click "ok" the explorer will open at a certain folder which should contain one named "Multibit". In this folder you should find your wallet files. Uninstalling the wallet does not remove these files.

And if for some reason this doesn't find it, having the wallet words will be helpful in restoring it - if that is what you meant by "password".
2222  Bitcoin / Bitcoin Technical Support / Re: Bought Bitcoins, Sent them to a wallet I unistalled. 1100$ Transaction on: September 29, 2015, 11:10:16 AM
I am on windows I used multibit

MultiBit HD?  Do you have the wallet words?

https://www.multibit.org/en/help/hd0.1/restore-wallet.html
2223  Bitcoin / Bitcoin Technical Support / Re: Best OS to run a node? on: September 18, 2015, 06:34:10 PM
I will recommand Linux OS for running node, easy,better,secure and faster then windows
you can work on both commandline and GUI interface

I see that Linux is the most preferred OS to run a full node, but what distro would that be? The most secure and easy to use, of course. I'm looking into Tails or Ubuntu, but I don't know if those distros are good for the task.

Personally, I like Ubuntu for it.
2224  Bitcoin / Press / Re: [2015-09-15] BTCBurns: Tracking How Many Bitcoins Have Been Burnt on: September 15, 2015, 03:00:49 PM
I think the key difference here is between burn being done intentionally whereas people losing coins due to hardware issues, lost keys etc are unintentional.  There was a thread somewhere on here trying to detail lost coins at one point.
2225  Bitcoin / Development & Technical Discussion / Re: Is it possible to create Bitcoin Cheques or Cupons. on: September 08, 2015, 10:51:23 AM
You could use something like changetip.com

No pin code, but it might suit some purposes
2226  Economy / Service Discussion / Re: Time for confirmation on: September 07, 2015, 11:56:47 PM
Blockchain.info attempts to give you an estimate.  There may be others, but it is one of them.  And all are just estimates.

e.g. this transaction:
https://blockchain.info/tx/27679520bf5e58c8f42b78c834522e35f6ceba986ccc79bd4f50cd2c33360b05

shows "Estimated Confirmation Time   Very Soon (High Priority)"
2227  Bitcoin / Press / Re: [2015-09-01] Ex-Federal agent admits stealing $820,000 in bitcoin in Silk Road c on: September 01, 2015, 04:08:37 PM
I find it amazing that this behavior didn't taint the entire investigation.  Having one of the main agents doing this casts a lot of doubt on the veracity of their investigation.
2228  Bitcoin / Development & Technical Discussion / Re: Exploiting Bitcoin Network Flaws on: August 31, 2015, 05:29:14 PM
1. This seems very off-topic for this sub-forum.

2. You can see if anyone is (or has been) exploiting flaws but writing a quick tool to count and trace all the bitcoins in existence and see if it matches up with the total it should be mathematically.  That will answer the question as to whether flaws have been exploited in the past definitively.

3. There is no way to "gain money without losing other people's money in the process".  If you inflate the currency through creating bitcoin out of thin air everyone else's coin's values drop proportionally.  E.g. if there are 14 million bitcoins in existence and I create 14 million more, what will happen to the price?  I don't believe it would be stable or increase.

2229  Bitcoin / Development & Technical Discussion / Re: Exploiting Bitcoin Network Flaws on: August 29, 2015, 04:09:45 PM
Are there any bitcoin network flaws that can be exploited to gain money without losing other people's money in the process.

Query: if there were, would bitcoin be worth anything?
2230  Bitcoin / Bitcoin Technical Support / Re: "fatal internal error" while syncing on: August 22, 2015, 01:58:54 AM
Syncing with a fresh Bitcoin XT didn't work either.
Now I'm out of ideas.
Windows 10 bug maybe?

If you can boot into an older version on the same hardware, it would be a good test to see if that solves it.
2231  Bitcoin / Press / Re: [2015-08-17] Snowden: Bitcoin is flawed and nobody likes to talk it anymore on: August 18, 2015, 01:17:32 PM
He hasn't taken a deep-dive into the protocol, as you can see from his quote regarding 51% attacks


I agree. He seems far from an expert on bitcoin, though you would think he would have more knowledge. Though maybe he's looking at it from a neutral position and we are biased slightly as I guess a 51% attack could happen so it could be an issue though likely wont. And if that's his only issue with bitcoin its not too bad at all.

I would agree.  You can know a lot of IT, a lot about encryption but if you haven't really looked in lots of detail about the protocol, it is easy to be misinformed.

2232  Bitcoin / Development & Technical Discussion / Re: why is the transaction that creates new bitcoin called the coinbase transaction? on: August 18, 2015, 10:12:38 AM
If you look at even the v0.1.0 source code (early 2009) you will see the term coinbase in various places - one might say it is at the base/beginning/foundation/root of each 'coin' and is the first transaction in the block, the base of the block.  BTW, Coinbase.com definitely took their name from the code, not vice versa.

See e.g. main.cpp, main.h, ui.cpp:

For example from main.cpp:
Code:
    // Coinbase is only valid in a block, not as a loose transaction
    if (IsCoinBase())
        return error("AcceptTransaction() : coinbase as individual tx");

    if (!CheckTransaction())
        return error("AcceptTransaction() : CheckTransaction failed");

    // Do we already have it?

...

    // First transaction must be coinbase, the rest must not be
    if (vtx.empty() || !vtx[0].IsCoinBase())
        return error("CheckBlock() : first tx is not coinbase");
    for (int i = 1; i < vtx.size(); i++)
        if (vtx[i].IsCoinBase())
            return error("CheckBlock() : more than one coinbase");


2233  Bitcoin / Bitcoin Technical Support / Re: max 8 connections to Bitcoin Network on: August 16, 2015, 05:41:33 PM
Also, this is not the current version.  :-)

With the last core update to Bitcoins wallet (v0.10.2), I can no longer get more than 8 connections to the network.  Most of the time I get 0-5, which with the size of the ledger, will take months to sync.  Bitcoin was given rights to pass through the Windows 7 firewall when the update was installed, so I do not understand why it is unable to connect to more than 8 nodes max.

I am running other cypto currencies wallets (Litecon / Dogecoin) with no issues connecting to the max nodes for sync, even following their software updates.

I've tried -maxconnections=##, but it appears that it is not a command line option with Bitcoin Core version v0.10.2 (64-bit).

I'm running Windows 7 64bit (fully updated), Bitcoin Core version v0.10.2 (64-bit), though 2wire Gateway DSL modem.  No Virus protection when running wallets sync.
2234  Bitcoin / Bitcoin Technical Support / Re: Bitcoin Core 0.11 on a Mac - differences from Windows on: August 15, 2015, 04:44:58 PM
Try under the "Help" menu...near the top of the screen, left.
2235  Bitcoin / Bitcoin Technical Support / Re: Missing transaction on: August 10, 2015, 10:43:27 AM
Bitcoins are either spent or unspent, so there is no "bounce back".  So I wouldn't stress about losing coins yet  :-)

If you know the transaction id of the first transaction, that would be a start to see what is going on. You might also try looking at a different block explorer to be sure. 

But one thing to do (as you had wondered) is to let Bitcoin Core fully sync since when you did that first transfer you may have sent a small part to the new wallet and the rest when to a change address.  Since Core is not fully sync'd, that might be an issue.  Hard to say for sure without looking at more info.

:-)
2236  Bitcoin / Press / Re: [2015-08-04] Australia considering to regulate Bitcoin as currency on: August 04, 2015, 03:26:14 PM
Competition is a great thing. Particularly between governments. This is a perfect examples.
2237  Bitcoin / Press / 2015-08-01 Telegraph.uk - Executive arrested over disappearance of $390 million on: August 01, 2015, 01:38:50 PM
Quote
Japanese police on Saturday arrested Mark Karpeles, head of the collapsed MtGox Bitcoin exchange, over the disappearance of about $390 (£250 million) worth of the virtual currency, local media said.  ...

http://www.telegraph.co.uk/finance/currency/11777486/Executive-arrested-over-disappearance-of-390-million-in-Bitcoins.html

2238  Bitcoin / Bitcoin Technical Support / Re: Bitcoin Core synchronization too slow (2 years and 11 weeks)! on: July 29, 2015, 03:43:53 PM
Are you running the current version?  Does it show how many connections you have?  SSD?
   Smiley
2239  Economy / Service Discussion / Re: How to read/find encrypted private key ? on: July 28, 2015, 12:23:15 PM
You should immediately move your coins to a new address.  The only thing protecting you right now is your passcode and chances are that is not as strong as you would hope.  Always be careful posting your private key - even when encrypted - anywhere.

That said, you should be able to ask bitgo how this works and/or you should ask in the service discussion (you can move this):
https://bitcointalk.org/index.php?board=85.0

You can read some about it here:
https://bitgo.zendesk.com/hc/en-us/sections/200994999-KeyCards-and-Private-Keys
https://bitgo.zendesk.com/hc/en-us/sections/200994989-BitGo-Wallet-Passwords
https://bitgo.zendesk.com/hc/en-us/articles/204369979-How-do-I-transfer-Bitcoin-between-wallets-

2240  Economy / Service Discussion / Re: I know my wallet address. I know my Wallet password. I dont know my wallet serve on: July 28, 2015, 11:29:11 AM
If you are talking about bitwallet.cc, then the question about your user name and password would best be directed to them. Is that what your receipt mentions?

If you have the public address and the private key, you can use them with other software wallets. And btw, using the public key, you can verify the balance at places like blockr.io or blockchain.info.

Whatever you do, don't share your private key because that will give anyone access to the coins.
Pages: « 1 ... 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 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 ... 215 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!