Bitcoin Forum
April 28, 2024, 11:15:06 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 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 »
1381  Alternate cryptocurrencies / Altcoin Discussion / Re: [TEST RELEASE] Cryptonite binary for linux (mini-blockchain implementation) on: June 11, 2014, 10:54:46 PM
no dice

Code:
mrv.sh: 6: mrv.sh: arithmetic expression: expecting primary: " + ( % 2) * 32768"

you wouldn't think this would be so damn hard...
1382  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] sgminer v5 - new unified multi-algorithm on-the-fly kernel switching miner on: June 11, 2014, 04:33:30 PM
Just found this thread today and holy shit what a sexy project! I cannot wait to give this a whirl tonight.
1383  Alternate cryptocurrencies / Altcoin Discussion / Re: [TEST RELEASE] Cryptonite binary for linux (mini-blockchain implementation) on: June 11, 2014, 02:08:02 PM
Quote
ffs I've been looking and looking and for the life of me, my tired eyes cannot find the message parameter you are referring to.
The sendtoaddress command will let you insert a custom message into the transaction. Like so:

./cryptonited -testnet sendtoaddress mkNYGT3USmiFEQhCNjTBqdvEyPWBvAZqVQ "1.00000000ep" "my message"

Well shit, not sure what I am doing wrong here. This is my script:

Code:
#!/bin/bash


while :
do
size=$RANDOM
./cryptonited -testnet sendtoaddress myoq946jrvuBCcHwzYV1cQV68Bdw1cVbjd "0.01000000ep" "$size"
sleep 1
done



But it's still giving me duplicate tx error. Any suggestions?

Can't you publish source for a version ready to test? Can't get it working on 14.04 or 14.10

Installing just libdb4.8 doesn't work, and installing libdb4.8-dev is not possible.

Did you add the BTC PPA? I am 99.9% certain you can install libdb4.8++-dev from that

It's just less problematic for people to compile it themselves, but like catia said if there's enough demand we probably will offer Linux binaries. There doesn't seem to be any great reason for not offering Linux binaries.

This I would have to agree with. From what I read the other days this whole issue with libdb4.8 can be solved by compiling from source with 5.1, it just changes your db structure but otherwise the source will compile from readily available dependencies instead of being a pain in the neck. Learn something new every day.

try this:

size=$(($RANDOM + ($RANDOM % 2) * 32768))

Thank you sir, I will give that a try. (only second day of ever using variables in a bash script... feel like a real nerd now lol)
1384  Alternate cryptocurrencies / Altcoin Discussion / Re: [TEST RELEASE] Cryptonite binary for linux (mini-blockchain implementation) on: June 11, 2014, 12:13:35 PM
Quote
ffs I've been looking and looking and for the life of me, my tired eyes cannot find the message parameter you are referring to.
The sendtoaddress command will let you insert a custom message into the transaction. Like so:

./cryptonited -testnet sendtoaddress mkNYGT3USmiFEQhCNjTBqdvEyPWBvAZqVQ "1.00000000ep" "my message"

Well shit, not sure what I am doing wrong here. This is my script:

Code:
#!/bin/bash


while :
do
size=$RANDOM
./cryptonited -testnet sendtoaddress myoq946jrvuBCcHwzYV1cQV68Bdw1cVbjd "0.01000000ep" "$size"
sleep 1
done

But it's still giving me duplicate tx error. Any suggestions?

Can't you publish source for a version ready to test? Can't get it working on 14.04 or 14.10

Installing just libdb4.8 doesn't work, and installing libdb4.8-dev is not possible.

Did you add the BTC PPA? I am 99.9% certain you can install libdb4.8++-dev from that

It's just less problematic for people to compile it themselves, but like catia said if there's enough demand we probably will offer Linux binaries. There doesn't seem to be any great reason for not offering Linux binaries.

This I would have to agree with. From what I read the other days this whole issue with libdb4.8 can be solved by compiling from source with 5.1, it just changes your db structure but otherwise the source will compile from readily available dependencies instead of being a pain in the neck. Learn something new every day.
1385  Alternate cryptocurrencies / Altcoin Discussion / Re: [TEST RELEASE] Cryptonite binary for linux (mini-blockchain implementation) on: June 11, 2014, 05:36:48 AM
Can you make a binary version using libdb5.3?

You don't need to install the -dev package. Just install libdb4.8. I take it you are a debian user? I have had a similar problem.
I'm using Ubuntu 14.10.

I installed libdb4.8 and I still get
Code:
./cryptonited: error while loading shared libraries: libdb_cxx-4.8.so: cannot open shared object file: No such file or directory

I am certain you need libdb4.8++-dev installed to get this running... though it was late when I finally did get mine working.
1386  Alternate cryptocurrencies / Altcoin Discussion / Re: [TEST RELEASE] Cryptonite binary for linux (mini-blockchain implementation) on: June 11, 2014, 05:33:59 AM
When we release the coin it will include only CPU miner. It is possible to create a GPU miner but GPU will have somewhat harder time with it than other algos.

Will it all be open source?
1387  Alternate cryptocurrencies / Altcoin Discussion / Re: [TEST RELEASE] Cryptonite binary for linux (mini-blockchain implementation) on: June 11, 2014, 05:32:21 AM
I think we are ready for you now. Download new client, MD5 775ddf55fa630ef37556a1ed6810dbd1. Delete cryptonite folder, save and restore wallet if you like.

Your script may have some problems now since it is impossible to have identical transactions in the same block. You can get around this by setting the message parameter to a random string or changing the amount of the transactions slightly.

We were trying to find a bug where transactions will show up with -1 confirmations in listtransactions. Some things were tried and it hasn't been seen in a bit, but no real solid explanation of what it was or how to reproduce it has been found. If you see this please send us your debug.log file.

ffs I've been looking and looking and for the life of me, my tired eyes cannot find the message parameter you are referring to.
1388  Alternate cryptocurrencies / Altcoin Discussion / Re: [TEST RELEASE] Cryptonite binary for linux (mini-blockchain implementation) on: June 11, 2014, 04:16:02 AM
ready?
1389  Alternate cryptocurrencies / Altcoin Discussion / Re: [TEST RELEASE] Cryptonite binary for linux (mini-blockchain implementation) on: June 11, 2014, 02:19:12 AM
geesh I can't win! ha.

Let me know when I can turn it back on sir.
1390  Alternate cryptocurrencies / Altcoin Discussion / Re: [TEST RELEASE] Cryptonite binary for linux (mini-blockchain implementation) on: June 11, 2014, 12:50:33 AM
today its not enough, but i am working very hard on that
1391  Alternate cryptocurrencies / Altcoin Discussion / Re: [TEST RELEASE] Cryptonite binary for linux (mini-blockchain implementation) on: June 11, 2014, 12:34:45 AM
lol don't mind the n00b who can't be bothered to read the OP. . . I'm gonna go sulk in the corner now
1392  Alternate cryptocurrencies / Altcoin Discussion / Re: [TEST RELEASE] Cryptonite binary for linux (mini-blockchain implementation) on: June 11, 2014, 12:23:10 AM
ok FINALLY got this bugger to at least try to run and now I have new issues. This is a copy from my terminal from trying to get the daemon started. What should I try next?


Code:
r00t@Hoverquarters ~/Downloads $ ./cryptonited --daemon
Cryptonite server starting
r00t@Hoverquarters ~/Downloads $ Failed check

r00t@Hoverquarters ~/Downloads $ ./cryptonited --daemon
Cryptonite server starting
r00t@Hoverquarters ~/Downloads $ : Error loading block database.

Do you want to rebuild the block database now?

r00t@Hoverquarters ~/Downloads $ ./cryptonited --daemon
Cryptonite server starting
r00t@Hoverquarters ~/Downloads $ cryptonited: trieview.cpp:23: TrieView::TrieView(): Assertion `fread(&m_bestBlock,1,32,filein)' failed.
Error: signal 6:
./cryptonited(_Z9backtracev+0x1f)[0xa6342a]
./cryptonited(_Z14HandleSIGABORTi+0x31)[0xa63489]
/lib/x86_64-linux-gnu/libpthread.so.0(+0xfbb0)[0x7f920d237bb0]
/lib/x86_64-linux-gnu/libc.so.6(gsignal+0x37)[0x7f920b80ef77]
/lib/x86_64-linux-gnu/libc.so.6(abort+0x148)[0x7f920b8125e8]
/lib/x86_64-linux-gnu/libc.so.6(+0x2fd43)[0x7f920b807d43]
/lib/x86_64-linux-gnu/libc.so.6(+0x2fdf2)[0x7f920b807df2]
./cryptonited(_ZN8TrieViewC1Ev+0xee)[0xbf35d0]
./cryptonited(_Z8AppInit2RN5boost12thread_groupE+0x4478)[0xa6d905]
./cryptonited(_Z7AppInitiPPc+0xba2)[0xa4ac53]
./cryptonited(main+0x29)[0xa4b29d]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf5)[0x7f920b7f9de5]
./cryptonited[0xa49ded]
cryptonited: /usr/include/boost/thread/pthread/condition_variable_fwd.hpp:46: boost::condition_variable::~condition_variable(): Assertion `!pthread_mutex_destroy(&internal_mutex)' failed.
Error: signal 6:
./cryptonited(_Z9backtracev+0x1f)[0xa6342a]
./cryptonited(_Z14HandleSIGABORTi+0x31)[0xa63489]
/lib/x86_64-linux-gnu/libpthread.so.0(+0xfbb0)[0x7f920d237bb0]
/lib/x86_64-linux-gnu/libc.so.6(gsignal+0x37)[0x7f920b80ef77]
/lib/x86_64-linux-gnu/libc.so.6(abort+0x148)[0x7f920b8125e8]
/lib/x86_64-linux-gnu/libc.so.6(+0x2fd43)[0x7f920b807d43]
/lib/x86_64-linux-gnu/libc.so.6(+0x2fdf2)[0x7f920b807df2]
./cryptonited(_ZN5boost18condition_variableD1Ev+0x3b)[0xa4e56f]
./cryptonited(_ZN11CCheckQueueI12CScriptCheckED1Ev+0x3e)[0xb49f7a]
/lib/x86_64-linux-gnu/libc.so.6(+0x3c071)[0x7f920b814071]
/lib/x86_64-linux-gnu/libc.so.6(+0x3c0f5)[0x7f920b8140f5]
./cryptonited[0xa63493]
/lib/x86_64-linux-gnu/libpthread.so.0(+0xfbb0)[0x7f920d237bb0]
/lib/x86_64-linux-gnu/libc.so.6(gsignal+0x37)[0x7f920b80ef77]
/lib/x86_64-linux-gnu/libc.so.6(abort+0x148)[0x7f920b8125e8]
/lib/x86_64-linux-gnu/libc.so.6(+0x2fd43)[0x7f920b807d43]
/lib/x86_64-linux-gnu/libc.so.6(+0x2fdf2)[0x7f920b807df2]
./cryptonited(_ZN8TrieViewC1Ev+0xee)[0xbf35d0]
./cryptonited(_Z8AppInit2RN5boost12thread_groupE+0x4478)[0xa6d905]
./cryptonited(_Z7AppInitiPPc+0xba2)[0xa4ac53]
1393  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ORIGINAL ☎☎☎ VIRTUAL COIN ☎☎☎ |VC | X11 |VGW |ASIC |v9.1.8 |RARE 3 MILLION COINS on: June 10, 2014, 04:03:11 AM
You can now vote for VC on Poloniex
1394  Alternate cryptocurrencies / Altcoin Discussion / Re: [TEST RELEASE] Cryptonite binary for linux (mini-blockchain implementation) on: June 10, 2014, 12:49:35 AM
Does this require libdb4.8?
Yes I believe the binary requires libdb4.8 to be installed.

hmmmm thats not what I wanted to hear. Let me keep playing with it.

[edit] So I've added the btc ppa and installed libdb4.8 but still getting the same error. Any ideas?

Does this require libdb4.8? I have 5.1 and 6 -dev installed and have a ton o wallets on this box but your binary is giving me this error:

Code:
./cryptonited: error while loading shared libraries: libdb_cxx-4.8.so: cannot open shared object file: No such file or directory

@mrv you sexy bastard you, where have you been hiding?

watch it billo, talk like that gets me excited!
 
Good to hear from you again, I took a break for a while then started hanging out with the NEMsters! How about you?


Do you have this package installed? lib64dbcxx4.8 or something along that line?

hehehe I know it does.

been floating around here and there... mining the shit out of monero at the moment but no real serious interests.

and no, no 4.8's at all. I think I might just fire up a vm for testing so not to mess up my current os (finally switched to Mint and holy shit I LOVE it compared to xubuntu)
1395  Alternate cryptocurrencies / Altcoin Discussion / Re: [TEST RELEASE] Cryptonite binary for linux (mini-blockchain implementation) on: June 10, 2014, 12:25:35 AM
Does this require libdb4.8? I have 5.1 and 6 -dev installed and have a ton o wallets on this box but your binary is giving me this error:

Code:
./cryptonited: error while loading shared libraries: libdb_cxx-4.8.so: cannot open shared object file: No such file or directory

@mrv you sexy bastard you, where have you been hiding?
1396  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ORIGINAL ☎☎☎ VIRTUAL COIN ☎☎☎ |VC | X11 |VGW |ASIC |v9.1.8 |RARE 3 MILLION COINS on: June 07, 2014, 05:37:21 PM
lol there's a 100k buy order at europex, someone is trying to get some cheap coins, there's only 3M coins in total, no way he will get 3% for like 20 USD lol

you never know til you try, right? someone sold him some for cheap... might be worth sending a little btc over there.
1397  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ORIGINAL ☎☎☎ VIRTUAL COIN ☎☎☎ |VC | X11 |VGW |ASIC |v9.1.8 |RARE 3 MILLION COINS on: June 07, 2014, 02:00:43 AM
Try using blockchain,
Code:
https://mega.co.nz/#!vcJ3FbBY!jMKj6Kibrp337-7DrrCH0UlvSKMv8kY2F6y4Rz3ReDw

dump into your virtualcoin folder & start wallet.

Do this only if you get stuck or wants to speedup the process of sync blockchain. This will get you to block# 25950


ok, now lets focus on getting fb & twitter up as well.

I am also trying to contact well known exchanges to include VC. Most usually demand upfront money in BTC to list it.

This sorta worked. I have connections but no blocks and the dreaded version mismatch warning across the top of the client.

is this for windows client or linux?

What does getinfo says?
Version: 90108

linux

Code:
{
"version" : 90108,
"protocolversion" : 70002,
"walletversion" : 60000,
"balance" : 0.00000000,
"blocks" : 0,
"timeoffset" : -3,
"connections" : 18,
"proxy" : "",
"difficulty" : 0.00024414,
"testnet" : false,
"keypoololdest" : 1401843634,
"keypoolsize" : 101,
"paytxfee" : 0.00000000,
"mininput" : 0.00001000,
"errors" : "Warning: Displayed transactions may not be correct! You may need to upgrade to new vCoin version from vCoin.ca"
}

so after sitting here scratching my head I decided just to restart the client and low and behold everything is fine now. Not sure what the hell happened.
1398  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ORIGINAL ☎☎☎ VIRTUAL COIN ☎☎☎ |VC | X11 |VGW |ASIC |v9.1.8 |RARE 3 MILLION COINS on: June 07, 2014, 01:32:17 AM
Try using blockchain,
Code:
https://mega.co.nz/#!vcJ3FbBY!jMKj6Kibrp337-7DrrCH0UlvSKMv8kY2F6y4Rz3ReDw

dump into your virtualcoin folder & start wallet.

Do this only if you get stuck or wants to speedup the process of sync blockchain. This will get you to block# 25950


ok, now lets focus on getting fb & twitter up as well.

I am also trying to contact well known exchanges to include VC. Most usually demand upfront money in BTC to list it.

This sorta worked. I have connections but no blocks and the dreaded version mismatch warning across the top of the client.

is this for windows client or linux?

What does getinfo says?
Version: 90108

linux

Code:
{
"version" : 90108,
"protocolversion" : 70002,
"walletversion" : 60000,
"balance" : 0.00000000,
"blocks" : 0,
"timeoffset" : -3,
"connections" : 18,
"proxy" : "",
"difficulty" : 0.00024414,
"testnet" : false,
"keypoololdest" : 1401843634,
"keypoolsize" : 101,
"paytxfee" : 0.00000000,
"mininput" : 0.00001000,
"errors" : "Warning: Displayed transactions may not be correct! You may need to upgrade to new vCoin version from vCoin.ca"
}
1399  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ORIGINAL ☎☎☎ VIRTUAL COIN ☎☎☎ |VC | X11 |VGW |ASIC |v9.1.8 |RARE 3 MILLION COINS on: June 06, 2014, 10:23:59 PM
Try using blockchain,
Code:
https://mega.co.nz/#!vcJ3FbBY!jMKj6Kibrp337-7DrrCH0UlvSKMv8kY2F6y4Rz3ReDw

dump into your virtualcoin folder & start wallet.

Do this only if you get stuck or wants to speedup the process of sync blockchain. This will get you to block# 25950


ok, now lets focus on getting fb & twitter up as well.

I am also trying to contact well known exchanges to include VC. Most usually demand upfront money in BTC to list it.

This sorta worked. I have connections but no blocks and the dreaded version mismatch warning across the top of the client.
1400  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ORIGINAL ☎☎☎ VIRTUAL COIN ☎☎☎ |VC | X11 |VGW |ASIC |v9.1.8 |RARE 3 MILLION COINS on: June 06, 2014, 06:24:11 PM
Dev did you updated the git source?
I can't get past block 1611, while it is ok on windows wallet having the same nodes in conf file.
so this just effects ubuntu? bloody figures. I switched to mint a few months back and I've been in love ever since. Screw ubuntu


[edit] hmmm no dice. Commented out the code and still stuck at 1611

Delete block chain data from virtualcoin folder.
only leave wallet.dat & virtualcoin.conf files in the folder.

rerun it, if you can't wait 5-10 mins, add following

/.virtualcoind addnode 83.145.61.172:49748 add
/.virtualcoind addnode 8.220.18.202:6761 add
/.virtualcoind addnode 62.21.3.96:59096 add

it should sync in no time Smiley

Did that, even tried on a fresh vps just to make sure. I get connections just fine.

That was me and yes something is screwed up.
Pages: « 1 ... 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!