Bitcoin Forum
May 28, 2024, 11:29:16 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 [208] 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 ... 317 »
4141  Bitcoin / Development & Technical Discussion / Re: Bitcoin RPC send error code -3 - Invalid Amount on: July 05, 2018, 08:00:25 PM
no, amount in float is > 0
That error code and string occur in only 4 places in the code, with each one protected by an if branch checking whether the amount given is <= 0. If you are getting this error, then your amount is being interpreted as being <= 0, regardless of what you intended it to be.



I don't think it is because the value is <= 0.
According to OP, there is a value > 0 (at least thats what it looks like according to the output to the screen):

print 'res = cc.sendtoaddress(addr, amo - txfee)', amo - txfee
res = cc.sendtoaddress(addr, amo - txfee) 0.14297412



I assume it is a type error. Thats what status code -3 should be for:


Quote
RPC_TYPE_ERROR = -3, //!< Unexpected type was passed as parameter
from: https://github.com/bitcoin/bitcoin/blob/v0.15.0.1/src/rpc/protocol.h#L50
4142  Bitcoin / Development & Technical Discussion / Re: Bitcoin RPC send error code -3 - Invalid Amount on: July 05, 2018, 07:48:06 PM
As achow101 already mentioned, it most probably is a bug in your code.
Mind sharing the relevant parts? We can't spot your bug without anything to look at.



but some times when bitcoin rate move up or down and amount to send is updating and transaction was created successfully

Could you explain this ?
Why does the bitcoin rate (BTC/USD price ?) influence your ability to create transactions ?

And what libary are you using? python-bitcoinrpc (https://github.com/jgarzik/python-bitcoinrpc) ?
4143  Bitcoin / Hardware wallets / Re: Warning for Ledger Nano S users / buyers on: July 05, 2018, 07:36:51 PM
Excuse me but where did you see the desktop application would be ready this month?

Ledger released an article in february, stating the release would be july:

Quote
Update June 5th: the release date of the new version of the Ledger Wallet desktop edition is scheduled to July 9th
Source: https://www.ledger.fr/2018/02/23/announcing-new-ledger-wallet-desktop-mobile-applications/


But who knows whether their software will be completely done by then.. I wouldn't be suprised by a delay of 1 or 2 months.
4144  Bitcoin / Bitcoin Technical Support / Re: How to get private key ? on: July 05, 2018, 07:27:43 PM
  launch your bitcoin client as usual and wait for it then stop it
   click on 'help' in the menu bar (top right)
   click on 'debug window'
   select the 'console' tab
   type: walletpassphrase "your walletpassphrase here" 600
   type: dumpprivkey [your Bitcoin address here] 
I just follow the commands stated below, still doesn't work in my laptop,:(

What exactly did not work?
Weren't you able to dump the private keys of your addresses?

Because each command itself is correct. Mind explaining where it didn't work or what exactly didn't work?
4145  Bitcoin / Bitcoin Technical Support / Re: BTC stuck in wallet due to Pvt key issues on: July 05, 2018, 07:25:29 PM
so i contact the broker for the priv keys and he tells me he doesnt have then so he gives me a story about getting a pvt key generator and sent me a link they charge 800$ to do the job but im not that happy with the arrangement

Unfortunately, you got scammed  Sad

Not only that you were never in possession of 'your' bitcoins (You do only own bitcoins if you own the correct private key), but he also has the gall to try to scam you again.

I guess you don't know him personally? Because if you do, you might contact the local law enforcement agency. You are a victim of a (sordid) crime.
4146  Bitcoin / Bitcoin Technical Support / Re: Old laptop with Bitcoin Folder on: July 05, 2018, 09:52:33 AM
Tried sending some btc on receiving address . It has been confirmed ..but did not show up on the wallet.
Do I have to be connected online?

Your client has to be fully synced to show your recent transactions.
Currently you are at block 143450. The latest block is 530552.

You won't see any transactions which were included in a block after the latest block of your local blockchain/chainstate (in your case: each block after 143450).

To see your coins/transaction you have to wait until core if fully synced (which can take quite some time), or you can export your private keys and import them into a lightweigt wallet if you don't want to wait.



My question is will system restore put the last wallet.dat file back again with correct date?
Because I am concerned the old wallet .dat file has been overwritten. I don’t know..

You are talking about the in-built restoring functionality in windows, aren't you?
It might work, but unfortunately it doesn't in most of the cases.

In case you have overwritten your wallet file, a better approach would be to not touch your computer anymore and make an image of your hard drive (e.g. with linux dd).
And then run a recovery software on this image to find any *.dat files (e.g. with recuva).
4147  Bitcoin / Electrum / Re: Electrum Wallet Problem on: July 04, 2018, 05:37:32 PM
I recently decided to refresh my Windows 10 system, which basically saves all files but removes some programs.

What do you mean with 'refresh' ?
Windows shouldn't delete any files/programs (programs are composed of files).



One of the programs which was removed was Electrum.

Did you ever backup your wallet file ?



I did this, but when I entered the seed phrase, the 'next' button was greyed out, so I couldn't proceed to the next stage.
The seed phrase I used was definitely correct.

Where did you generate this seed?
If you have generated it in another wallet it most probably is a BIP39 seed (Check the BIP39-button when entering the seed).



I had a backup of Electrum on an external hard drive, so I copied the Electrum folder and replaced the one on my PC with this, but it still didn't work.

Try to use the newest version of electrum and move the wallet file of your external drive into the electrum directory.
But make sure to rename the wallet file inside the directory (default name: default_wallet) so it won't get overwritten (just in case).
4148  Bitcoin / Bitcoin Technical Support / Re: Can I delete my wallet.dat without problems ? on: July 04, 2018, 02:48:20 PM
My question is, when I delete the wallet.dat, will Bitcoin Core generate a new one for me ?

Yes. You will be able to create a new one.
You can create as much wallet files as you wish.

And if you have just created a wallet for testing purpose and didn't use any address, you can safely delete it without running any risks (even though just renaming it wouldn't hurt).
4149  Bitcoin / Bitcoin Technical Support / Re: Please Help on: July 04, 2018, 02:46:14 PM
I re-downloaded electrum again and got this

https://ibb.co/mEXz0T

Did you redownload electron cash?
Or did you download the real electrum (from https://electrum.org/#home) ?

You can simply download electrum and move your wallet file (from electron cash) to the electrum folder (make a backup before doing this).
But you should create a new wallet and transfer the funds out of this wallet. I would not trust a seed which has been created by electron cash.

Another option would be to export the private keys from electron and importing them into electrum.
4150  Bitcoin / Hardware wallets / Re: [Guide] Hardware wallets - which one is a good choice? on: July 04, 2018, 01:51:54 PM
You might also want to include these hardware wallets into your list:


Note that some are open source while others are not.
I would also not trust those wallets without making some researches, checking whether source code is open source, look at reputations, etc. ..
4151  Bitcoin / Electrum / Re: someone help! please. on: July 04, 2018, 01:44:12 PM
Did it finally show up?

Since the transaction as been included into a block properly there are bascially 3 options in this scenario:

1) The recipient has an outdated version / no connection to the network
2) The address does not belong to the recipient (maybe he sent you the wrong address or you copied it wrong; maybe clipping malware?)
3) The person you are dealing with just scammed you.
4152  Bitcoin / Electrum / Re: Thinking of switching to Electrum on: July 04, 2018, 01:38:15 PM
electrum seed is not bip39 so you can't use the coleman site to generate address specific private keys.

Thats true. At least for the mnemonic seed phrase.

But since electrum does follow the BIP44 specification, the xpriv can be entered into the Account Extended Private Key field on https://iancoleman.io/bip39/ to restore the private keys.

So a backup of the mnemonic seed phrase AND the xpriv would be the best choice regarding safety.
4153  Bitcoin / Bitcoin Technical Support / Re: do i need special software to use LIGHTNING ? ! on: July 04, 2018, 01:31:32 PM
Take your trust point, but won't creating trust be a key part of wider adoption?

IMO this depends.

On the one hand creating a structure with people you actually can trust to handle your payment will indeed increase adoption.
People are already trusting on 3rd parties to hold their coins (e.g. holding coins on an exchange, web wallets, .. ).
And i can very well imagine that institutions are going to create a server structure to provide such a service (for a small fee).

But in the end the system has been created to work without any trust. The key point is the ability to verify the integrity of all information / transactions yourself.

Everyone is free to give this control away. It basically depends on the reasons why you are using crypto currencies.
4154  Bitcoin / Electrum / Re: Thinking of switching to Electrum on: July 04, 2018, 12:34:28 PM
pooya87 basically answered your questions. But to add a small information regarding the second point:

So, if that file is gone forever does it mean my satoshis are gone forever too, or is there a way to get my satoshis back in case that file went missing?

The word seed you are prompted to backup can regenerate all of your private keys.
You can either reimport it into electrum or use any other tool to derive the private keys (e.g. https://iancoleman.io/bip39/).

You might download the site and store it offline. Once electrum should not be available somehow, you still can regenerate all of your private keys and import them into any other wallet.
This way you are completely independent from any software-/server- provider.

A better option would be to use a hardware wallet (nano s) with electrum.
This way you will be using a BIP39 compatible seed (which does work in any other BIP39 compatible wallet (almost everyone)).
And your private keys will stay in a secured environment, which does negate most attack vectors.

4155  Bitcoin / Hardware wallets / Re: Hardware Wallets vs. Software Wallets on: July 04, 2018, 12:21:33 PM
hardware wallet is more secure but if you accidently busted your wallet there is no way to access that wallet.

Thats not fully correct.

While you can't actually use the hardware device once it is broken, you still CAN access your private keys (and therefore all of your bitcoins stored on the hardware wallet).
Each hardware wallet (or software wallet) does prompt you to backup a 12/18/24 word seed.
This seed can always be used to generate your private keys (using a specific 'function', which is described in BIP32/BIP38 (can be found here: https://github.com/bitcoin/bips)). Even without the physical device.

4156  Bitcoin / Bitcoin Technical Support / Re: Do i need Minimum Balance when some one Mining For my Blockchain Wallet. on: July 04, 2018, 12:13:19 PM
some one create my blockchain wallet address with my email id and says to change wallet address password, i change the password and enable 2-factor authantication now he says that put $200 on that blockchain wallet to activate start mining. Its real or scam.

This is definitely scam.

Mining in a pool basically works like this:
1) You buy/build/get an ASIC
2) You give the mining pool your address you want to receive payments to (can be an empty adress)
3) You receive a share to work on (where you will be tryint to solve a challenge from the mining pool operator)
4) You submit your calculated share
5) Whenever someone from this mining pool finds a block, the rewards gets distributed in relation to the % of hashrate you have contributed

Never (under no circumstances) let someone else create a wallet for you.
Always create your wallet yourself. And preferably do not use a online wallet (like blockchain.info).
Visit https://bitcoin.org/en/choose-your-wallet and read through the differend kind of wallets.
4157  Bitcoin / Bitcoin Technical Support / Re: Old laptop with Bitcoin Folder on: July 04, 2018, 11:53:33 AM
@OP

Did you manage to access your bitcoin / private keys ?

If not and if you have the assumption your old wallet has been overwritten, you might stop using your computer and try to restore the overwritten file (but back your current wallet.dat up on a different storage device).
There are quite a few user friendly recovery tools available on the internet.

Did you let core sync before looking at the transaction history ?
Or did you check the addresses for transactions in a block explorer?
4158  Bitcoin / Bitcoin Technical Support / Re: do i need special software to use LIGHTNING ? ! on: July 04, 2018, 11:35:39 AM
How does one - in theory - select a 'good node' as opposed to a bad one? When I say 'good' I mean one that can handle your proposed transaction size, expiry, htlcs vales, etc?

Finding it a complete lottery, with some nodes (lots of connections, local, high values) automatically closing my channels, while smaller acinq nodes often fail due to expiry/htlcs errors...

Ideally, you connect with your mobile phone to your own node at home.
The only one you can trust for sure are you.

If you are choosing someone else to handle your channel, you are trusting that 3rd person.

This leads to the question how you can find someone who is trustful enough to handle this for you.
Either you know the person, or they have a very good reputation, or they can somehow ensure you won't lose money.


But also note that the LN currently isn't even in 'open beta'.
It is still a very early version (which does steadily increase in channel capacity / usage).

4159  Bitcoin / Bitcoin Technical Support / Re: How to get private key ? on: July 04, 2018, 11:26:58 AM
Importing an old wallet into a new version should work since afaik the devs always worked on backwards compatibility.
First, backup your wallet (And move them somewhere safe).

Then you can try to import the wallet file into the new core version (install core -> move the wallet file inside the directory).

If this somehow doesn't work you might try to use pywallet(https://github.com/jackjack-jj/pywallet).
This tool allows you to dump all private keys found on your drive.

Even though this tool hasn't been updated for a pretty long time, it still works for .dat's from older versions.
4160  Bitcoin / Wallet software / Re: Jaxx, continuous transaction failed on: June 29, 2018, 02:52:20 PM
I am getting issues trying to move my ZEC out of my Jaxx wallet.

I kept getting transacted failed whenever I tried to move on an exchange or even shapeshift. I have so far tried to export my private keys and import them via Coinomi but I am starting to get errors on there.
I had 4 wallets containing ZEC, I was able to move some of my ZEC on an exchange due to coinomi. I am now getting connection errors on coinomi..

Can I get advice on what to do? Thanks!

1) Tried clearing cache
2) Updated to latest on Jaxx
3) Tried coinomi to transfer ZEC (only 2/4 worked, connection errors now..)
4) Reinstalling Jaxx
5) Tried on my android as-well.


I'm having same issues. I'm about to seek a ZEC wallet to extract my ZCash bc I can't send them or convert them using shapeshift. I tried installing Jaxx on two different PCs and importing the  key phrase to no avail. I opened a support ticket so let's see what we find out.


Did you try step 3) ?


You can always export your private keys from armory and import them into another wallet.
Coinomi is a mobile wallet which support 154 different cryptocurrencies (including ZCash): https://play.google.com/store/apps/details?id=com.coinomi.wallet


Pages: « 1 ... 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 [208] 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 ... 317 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!