Advertisement
m0gliE

Moving coins from one wallet.dat to another wallet.dat

Feb 4th, 2014
442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Moving coins from one wallet.dat to another wallet.dat
  2.  
  3. // First wallet.dat
  4. Click Help>Debug>Console
  5.  
  6. listaccounts
  7. // Displays each account, if you have one, simply use "" as primary
  8. // Example list of my faucet account
  9. "faucet " : 500.00000000,
  10.  
  11. // You want to get the address for your account
  12. getaddressbyaccount "faucet"
  13. // Or for default use;
  14. getaddressbyaccount ""
  15. // returns [address]
  16.  
  17. **note some clients use:
  18.  
  19. getaccountaddress
  20. // returns [address]
  21.  
  22. dumpprivkey address
  23. // returns privkey
  24.  
  25. // Second wallet.dat
  26. Help>Debug>Console
  27.  
  28. importprivkey privkey "faucet" rescan=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement