Bitcoin Forum
April 26, 2024, 08:30:43 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 [916] 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 ... 2123 »
  Print  
Author Topic: [XMR] Monero - A secure, private, untraceable cryptocurrency  (Read 4667061 times)
smooth
Legendary
*
Offline Offline

Activity: 2968
Merit: 1198



View Profile
December 24, 2014, 12:04:01 PM
 #18301

Hi,please help me,I send 661.36XMR coin to Poloniex, but now is not Receive。I Send a message to you, alone now no reply。I might have forgotten to send payment iD. Now how to do  Angry

Contact Poloniex support. Give them the information about your transaction, they can probably find it and credit to your account.

Next time make sure use the payment ID.
1714120243
Hero Member
*
Offline Offline

Posts: 1714120243

View Profile Personal Message (Offline)

Ignore
1714120243
Reply with quote  #2

1714120243
Report to moderator
1714120243
Hero Member
*
Offline Offline

Posts: 1714120243

View Profile Personal Message (Offline)

Ignore
1714120243
Reply with quote  #2

1714120243
Report to moderator
"The nature of Bitcoin is such that once version 0.1 was released, the core design was set in stone for the rest of its lifetime." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714120243
Hero Member
*
Offline Offline

Posts: 1714120243

View Profile Personal Message (Offline)

Ignore
1714120243
Reply with quote  #2

1714120243
Report to moderator
1714120243
Hero Member
*
Offline Offline

Posts: 1714120243

View Profile Personal Message (Offline)

Ignore
1714120243
Reply with quote  #2

1714120243
Report to moderator
1714120243
Hero Member
*
Offline Offline

Posts: 1714120243

View Profile Personal Message (Offline)

Ignore
1714120243
Reply with quote  #2

1714120243
Report to moderator
mo
Legendary
*
Offline Offline

Activity: 1484
Merit: 1001


View Profile
December 24, 2014, 12:07:51 PM
 #18302

Hi,please help me,I send 661.36XMR coin to Poloniex, but now is not Receive。I Send a message to you, alone now no reply。I might have forgotten to send payment iD. Now how to do  Angry

Contact Poloniex support. Give them the information about your transaction, they can probably find it and credit to your account.

Next time make sure use the payment ID.
Thank you! I contacted them in facebook. But no reply now,You probably want to know how long it
Febo
Legendary
*
Offline Offline

Activity: 2730
Merit: 1288



View Profile
December 24, 2014, 12:12:34 PM
 #18303

Hi,please help me,I send 661.36XMR coin to Poloniex, but now is not Receive。I Send a message to you, alone now no reply。I might have forgotten to send payment iD. Now how to do  Angry

Contact Poloniex support. Give them the information about your transaction, they can probably find it and credit to your account.

Next time make sure use the payment ID.
Thank you! I contacted them in facebook. But no reply now,You probably want to know how long it

Fastest is if you ask for help in Poloniex trollbox. There is always help there active.
David Latapie
Hero Member
*****
Offline Offline

Activity: 658
Merit: 503


Monero Core Team


View Profile WWW
December 24, 2014, 12:47:56 PM
 #18304

Whoever is in charge of forkguard should consider filling some information on Monerobase (this is not an official wiki and this statement is personal, not an endorsement by the core team)
https://monerobase.com/ForkGuard

Monero: the first crytocurrency to bring bank secrecy and net neutrality to the blockchain.HyperStake: pushing the limits of staking.
Reputation threadFree bitcoins: reviews, hints…: freebitco.in, freedoge.co.in, qoinpro
David Latapie
Hero Member
*****
Offline Offline

Activity: 658
Merit: 503


Monero Core Team


View Profile WWW
December 24, 2014, 01:17:50 PM
Last edit: December 26, 2014, 11:48:17 AM by David Latapie
 #18305

As a reminder for any one willing to test drive the DB. And Merry Christmas!

Updated version. Step 5, 6 should be temporary and 7 should eventually not need sudo.

This tutorial requires using the terminal and is for an Ubuntu-based Linux (it requires ppa, so won't work with other Debian-based).

1. If no previous non-DB version of Monero exists on this machine, install monero and choose option 1 then y (this is just for installing the dependancies) - download the blockchain (long)
Code:
cd ~ && rm -f install_monero.sh && wget https://raw.githubusercontent.com/Quanttek/install_monero/master/install_monero.sh && bash install_monero.sh
2. Close bitmonero and simplewallet
3. Run this command. It will install liblmdb-dev and libunbound-dev and grab only the code you need (a variant of the code on a different directory, so it won't delete your working monero)
Code:
sudo apt-get install libunbound-dev liblmdb-dev && mkdir -p ~/bitmonero-testing && cd ~/bitmonero-testing && rm -rf bitmonero && git clone https://github.com/tewinget/bitmonero.git --branch blockchain --depth 1
4. compile
Code:
cd ~/bitmonero-testing/bitmonero && make
5. back up your blockchain
Code:
cp ~/.bitmonero/blockchain.bin ~/.bitmonero/blockchain.bin-backup
7. [WORKAROUND] create /home/user/.bitmonero (no need to be an user, just the folder)
Code:
sudo mkdir /home/user/ && sudo mkdir /home/user/.bitmonero
8. [WORKAROUND] copy the blockchain here
Code:
sudo cp ~/.bitmonero/blockchain.bin /home/user/.bitmonero/blockchain.bin
9. Convert the blockchain with the new aptly-named "blockchain_converter"
Code:
cd ~/bitmonero-testing/bitmonero/build/release/src && sudo ./blockchain_converter
10. Wait several dozen of minutes - you won't see anything, that's normal. If you want to check it is actually converting, open a new terminal and type top. The blockchain_conv process shall be consistently on top.
11. Start daemon and wallet, try some small transactions. Check the CPU and RAM also Smiley
Code:
top
Code:
free -h

Use testnet, not mainnet. Better safe than sorry.

Also, I have this issue so I can't go any further:
Code:
sudo ./blockchain_converter
block 0/364155 (0%)
Error adding block to new blockchain: std::exception

Monero: the first crytocurrency to bring bank secrecy and net neutrality to the blockchain.HyperStake: pushing the limits of staking.
Reputation threadFree bitcoins: reviews, hints…: freebitco.in, freedoge.co.in, qoinpro
EmilioMann
Legendary
*
Offline Offline

Activity: 2184
Merit: 1028


#mitandopelomundo


View Profile
December 24, 2014, 01:27:08 PM
Last edit: December 24, 2014, 01:40:34 PM by EmilioMann
 #18306

XMR is a good anonymous POW coin, SDC is a good anonymous POS coin

Let's be friends, XMR guys  Wink

Cryptonote protocol is unites us

Friends? LOL

This remembered me these posts from pookie aka Mr. Boh on twitter (@cryptoboh), smurf, CryptoChronic and many other from shadowtrash community trolling and spreading fud against monero that they tried to copy and paste unsuccessfully now https://bitcointalk.org/index.php?topic=789978.msg8940501#msg8940501

The sdc community is formed by the worst kind of people that may exist.

Need help to solve their problems and then when solved they go try to destroy XMR again.
Just as they did with all the other currencies that copied the ideas.
Bassica
Sr. Member
****
Offline Offline

Activity: 283
Merit: 250


View Profile
December 24, 2014, 01:50:14 PM
 #18307

The DB!!!! Exciting  Grin Grin Grin

I can't test it right now being at work, but I'm very eager to try it after x-mas
dEBRUYNE
Legendary
*
Offline Offline

Activity: 2268
Merit: 1141


View Profile
December 24, 2014, 02:09:01 PM
 #18308

The DB!!!! Exciting  Grin Grin Grin

I can't test it right now being at work, but I'm very eager to try it after x-mas

The work on the DB already has been on going for a longtime. Just have a look at the commits and fixes on github: https://github.com/moneromooo-monero/bitmonero/compare/blockchain. Also, if you are present in the #monero-dev channel, you will see that there is a lot of discussion (and the developing) going on about the DB. I hope we will see a stable DB in the upcomming months.

PS: Devs, I hope I posted the right link. If not, correct me please.

Privacy matters, use Monero - A true untraceable cryptocurrency
Why Monero matters? http://weuse.cash/2016/03/05/bitcoiners-hedge-your-position/
MoneroMooo
Legendary
*
Offline Offline

Activity: 1276
Merit: 1001


View Profile
December 24, 2014, 02:41:24 PM
 #18309

It's not the main blockchain branch. This is my own branch. The one you want to look at is: https://github.com/tewinget/bitmonero/commits/blockchain
liteon
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000


I'm a Firestarter!


View Profile WWW
December 24, 2014, 03:36:10 PM
 #18310

Needed:

- Finished DB
- more projects related by XMR (as only)
- marketing

Selling NordVPN account with premium sub - expires 2021! PM me to buy.
e-coinomist
Legendary
*
Offline Offline

Activity: 2380
Merit: 1085


Money often costs too much.


View Profile
December 24, 2014, 03:44:01 PM
 #18311

As a reminder for any one willing to test drive the DB. And Merry Christmas!

Merry Christmas,
...Vrolijk Kerstfeest en een Gelukkig Nieuwjaar! or Zalig Kerstfeast, Chung Mung Giang Sinh, Feliz Navidad, La Maunia Le Kilisimasi Ma Le Tausaga Fou, Shinnen omedeto. Kurisumasu Omedeto, Joyeux Noel, Boas Festas e Feliz Ano Novo, Gesëende Kersfees, Cristmas-e-shoma mobarak bashad, Selamat Hari Natal, Sung Tan Chuk Ha, Meri Kirihimete, Merry Keshmish, Bikpela hamamas blong dispela Krismas na Nupela yia i go long yu, Wesolych Swiat Bozego Narodzenia or Boze Narodzenie, Feliz Natal, Froehliche Weihnachten, Gledileg Jol, Zalig Kerstfeest en Gelukkig nieuw jaar, Hyvaa joulua, Jutdlime pivdluarit ukiortame pivdluaritlo!, Buone Feste Natalizie, Nathar Puthu Varuda Valthukkal, Noeliniz Ve Yeni Yiliniz Kutlu Olsun, Sawadee Pee Mai, Nollaig chridheil huibh, God Jul or Gledelig Jul, Nollaig Shona Dhuit or Nodlaig mhaith chugnat, Ojenyunyat Sungwiyadeson honungradon nagwutut. Ojenyunyat osrasay, Mele Kalikimaka ame Hauoli Makahiki Hou!, Shub Naya Baras, Mo'adim Lesimkha. Chena tova, Kala Christouyenna!, Mitho Makosi Kesikansi, Gun Tso Sun Tan'Gung Haw Sun, Kung His Hsin Nien bing Chu Shen Tan, Tchestita Koleda; Tchestito Rojdestvo Hristovo, Idah Saidan Wa Sanah Jadidah, Natale hilare et Annum Faustum!

PS: and, did you found the wallet key inside?
crypto4jan
Legendary
*
Offline Offline

Activity: 2448
Merit: 1025


Energy coin master


View Profile WWW
December 24, 2014, 05:04:44 PM
 #18312


The best wishes for Monero my second favorite CryptoCurrency and it was a great day on exchanges!

e2wwnbU8XBcnZxSfMTwZLS7Ru6LdWHunCu
00000a5ac2dc57cfb0b92bc8be7731fe6a94a8c1c49a0d2f32e9e2da4f7d2308
binaryFate
Legendary
*
Offline Offline

Activity: 1484
Merit: 1003


Still wild and free


View Profile
December 24, 2014, 05:07:17 PM
 #18313

Merry XMRas Smiley

Monero's privacy and therefore fungibility are MUCH stronger than Bitcoin's. 
This makes Monero a better candidate to deserve the term "digital cash".
jehst
Hero Member
*****
Offline Offline

Activity: 798
Merit: 1000

21 million. I want them all.


View Profile
December 24, 2014, 05:48:57 PM
 #18314

If others haven't seen it, the August fireside chat has a preview of the GUI. Timelinked for your convenience: https://www.youtube.com/watch?v=LlTDS3iCqRY&#t=9m30s

It looks very well-thought-out and feature-rich.

Thank you, devs. This project is pure quality.

Year 2021
Bitcoin Supply: ~90% mined
Supply Inflation: <1.8%
dEBRUYNE
Legendary
*
Offline Offline

Activity: 2268
Merit: 1141


View Profile
December 24, 2014, 05:52:26 PM
 #18315

If others haven't seen it, the August fireside chat has a preview of the GUI. Timelinked for your convenience: https://www.youtube.com/watch?v=LlTDS3iCqRY&#t=9m30s

It looks very well-thought-out and feature-rich.

Thank you, devs. This project is pure quality.

Screens here: http://imgur.com/a/ERheR. My guess is that the GUI will be released if we have a stable DB, without a stable DB it doesnt make any sense to release it. Btw, this is pure speculation, I have no real information regarding the subject.

Privacy matters, use Monero - A true untraceable cryptocurrency
Why Monero matters? http://weuse.cash/2016/03/05/bitcoiners-hedge-your-position/
liteon
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000


I'm a Firestarter!


View Profile WWW
December 24, 2014, 07:50:15 PM
 #18316

If others haven't seen it, the August fireside chat has a preview of the GUI. Timelinked for your convenience: https://www.youtube.com/watch?v=LlTDS3iCqRY&#t=9m30s

It looks very well-thought-out and feature-rich.

Thank you, devs. This project is pure quality.

Screens here: http://imgur.com/a/ERheR. My guess is that the GUI will be released if we have a stable DB, without a stable DB it doesnt make any sense to release it. Btw, this is pure speculation, I have no real information regarding the subject.
This looks nice.
Hope you'll make it with DB when it's ready for test ride.

Selling NordVPN account with premium sub - expires 2021! PM me to buy.
Hueristic
Legendary
*
Offline Offline

Activity: 3794
Merit: 4865


Doomed to see the future and unable to prevent it


View Profile
December 24, 2014, 07:54:44 PM
 #18317

Hi,please help me,I send 661.36XMR coin to Poloniex, but now is not Receive。I Send a message to you, alone now no reply。I might have forgotten to send payment iD. Now how to do  Angry

Jump in the trollbox, they will hook you up pronto!

“Bad men need nothing more to compass their ends, than that good men should look on and do nothing.”
generalizethis
Legendary
*
Offline Offline

Activity: 1750
Merit: 1036


Facts are more efficient than fud


View Profile WWW
December 24, 2014, 09:59:17 PM
 #18318

If others haven't seen it, the August fireside chat has a preview of the GUI. Timelinked for your convenience: https://www.youtube.com/watch?v=LlTDS3iCqRY&#t=9m30s

It looks very well-thought-out and feature-rich.

Thank you, devs. This project is pure quality.

After seeing that presentation, I bought my first Monero.  Cheesy

BitcoinDN.com
Member
**
Offline Offline

Activity: 97
Merit: 10


View Profile
December 25, 2014, 01:44:25 AM
 #18319

Is mymonero.com broken? I made a new account to test, and I can't login with the just generated private key. "No account found!"
resya
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
December 25, 2014, 01:47:38 AM
 #18320

If others haven't seen it, the August fireside chat has a preview of the GUI. Timelinked for your convenience: https://www.youtube.com/watch?v=LlTDS3iCqRY&#t=9m30s

It looks very well-thought-out and feature-rich.

Thank you, devs. This project is pure quality.

After seeing that presentation, I bought my first Monero.  Cheesy

All the smart XMR guy sold a looong time ago... just people trying to make up their loses are left.. its almost as bad as BTC but BTC offers something while XMR is just copy paste coin

███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
█   ⚂⚄⚀⚃⚅⚁    ██  d a d i c e  ██    Next Generation Dice Game
• Low 1% house edge. • Provably Fair.  
███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
Pages: « 1 ... 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 [916] 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 ... 2123 »
  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!