Pages:
Author

Topic: [*BLITZ*] Blitz Coin| BlitzNodes | BlitzPay| TheViralExchange | BlitzMM | - page 4. (Read 164263 times)

sr. member
Activity: 335
Merit: 250
TheViralExchange 2.8.2 has been delivered | https://theviralexchange.com/

- Changed password encryption
- Added password security gauge
- Added check on facebook linking
- Added check on google linking
- Added ability to change username
- Improved username creation and verification
- Added recaptcha on page creation
- Disabled lost password link after used
- Corrected a bug in page creation where Google account names weren't showing correctly
- Corrected error 500 page


If you have any problem, please clear cache first.

Great work Alpho Smiley

Also, Blitz Rewards was sent out this morning to all investors holding coins over 15k. Total of 5635 Blitz.

You can also keep up-to-date with our slack channel using http://bitalize.slackarchive.io

Can you provide some details of the reward....

It makes 0 sense that Blitz Rewards can be sent without a dividend from TVE being sent yet.
hero member
Activity: 938
Merit: 500
One Token to Move Anything Anywhere
TheViralExchange 2.8.2 has been delivered | https://theviralexchange.com/

- Changed password encryption
- Added password security gauge
- Added check on facebook linking
- Added check on google linking
- Added ability to change username
- Improved username creation and verification
- Added recaptcha on page creation
- Disabled lost password link after used
- Corrected a bug in page creation where Google account names weren't showing correctly
- Corrected error 500 page


If you have any problem, please clear cache first.

Great work Alpho Smiley

Also, Blitz Rewards was sent out this morning to all investors holding coins over 15k. Total of 5635 Blitz.

You can also keep up-to-date with our slack channel using http://bitalize.slackarchive.io
legendary
Activity: 1188
Merit: 1001
the last known person who tried seems sigwo on ubuntu he said was ok Pi code isn't because TOR
seems has problems running on pi
jr. member
Activity: 51
Merit: 1
There are 2 repositories (that I know of) for the Blitz wallet:
- The one posted in ANN here (https://bitcointalksearch.org/topic/blitz-blitz-coin-blitznodes-blitzpay-theviralexchange-blitzmm-848186): https://bitbucket.org/blitz-dev/blitz-public
- Another one used for the Azure submission: https://github.com/KemBits/blitz-coin

I cannot run the qt wallet or the daemon and I get the same problems with both repositories. The system runs on Lubuntu 15.10.
Lubuntu currently installs Boost 1.58, where wallet docs indicate 1.37.
I have berkeleydb 4.8 installed from bitcoin ppa, and also the most recent version that comes with Lubuntu. Apt-get tells me I should remove the 2 packages for 4.8...

While compiling the Qt wallet, I get this error (I left everything at defaults, upnp etc when issuing qmake):
g++: error: /usr/local/src/blitz/src/leveldb/libleveldb.a: No such file or directory
g++: error: /usr/local/src/blitz/src/leveldb/libmemenv.a: No such file or directory
Makefile:810: recipe for target 'blitz-qt' failed
make: *** [blitz-qt] Error 1


Those 2 files do not exist and are in fact listed in .gitignore, in the folder they were supposed to be in.
I don't know if this is related, but /src/leveldb/build_detect_platform already comes with execute permissions (at least when cloned from the bitbucket repo).
I solved this part by following this post: https://bitcointalksearch.org/topic/m.2774736
Basically I compile the 2 missing files before the 'main' qmake/make:
Code:
cd src/leveldb
make libleveldb.a libmemenv.a

After this problem goes away, I get a few Boost errors:
/usr/bin/ld: cannot find -lboost_system-mt
/usr/bin/ld: cannot find -lboost_filesystem-mt
/usr/bin/ld: cannot find -lboost_program_options-mt
/usr/bin/ld: cannot find -lboost_thread-mt
/usr/bin/ld: cannot find -lboost_date_time-mt
/usr/bin/ld: cannot find -lboost_chrono-mt
collect2: error: ld returned 1 exit status
Makefile:804: recipe for target 'blitz-qt' failed
make: *** [blitz-qt] Error 1


And according to this http://askubuntu.com/questions/486006/cannot-find-boost-thread-mt-library
The mt (multithreading) has been removed and is not needed any more. Fixes are: either update the code or symlink to the correct (-mt less) files. I created all the symlinks and make finally completed successfully.

Then at run time, execution was halted (its a VNC session):

./blitz-qt
Qt: XKEYBOARD extension not present on the X server.
QGradient::setColorAt: Color position must be specified in the range 0 to 1
QGradient::setColorAt: Color position must be specified in the range 0 to 1
Abr 26 20:46:12.469 [err] tor_assertion_failed_(): Bug: src/tor/memarea.c:127: alloc_chunk: Assertion realign_pointer(res->next_mem) == res->next_mem failed; aborting.
Abr 26 20:46:12.500 [err] Bug: Assertion realign_pointer(res->next_mem) == res->next_mem failed in alloc_chunk at src/tor/memarea.c:127. Stack trace:
Abr 26 20:46:12.500 [err] Bug:     ./blitz-qt() [0x8114e63]
Abr 26 20:46:12.500 [err] Bug:     ./blitz-qt() [0x81fa050]
Abr 26 20:46:12.500 [err] Bug:     ./blitz-qt() [0x81a7d8c]
Abr 26 20:46:12.501 [err] Bug:     ./blitz-qt() [0x81a7e67]
Abr 26 20:46:12.501 [err] Bug:     ./blitz-qt() [0x81f21c5]
Abr 26 20:46:12.501 [err] Bug:     ./blitz-qt() [0x81bdc69]
Abr 26 20:46:12.501 [err] Bug:     ./blitz-qt() [0x81bddf5]
Abr 26 20:46:12.501 [err] Bug:     ./blitz-qt() [0x81be165]
Abr 26 20:46:12.501 [err] Bug:     ./blitz-qt() [0x81be3ca]
Abr 26 20:46:12.501 [err] Bug:     ./blitz-qt() [0x814590f]
Abr 26 20:46:12.501 [err] Bug:     ./blitz-qt() [0x814a73d]
Abr 26 20:46:12.501 [err] Bug:     ./blitz-qt() [0x814aa6f]
Abr 26 20:46:12.501 [err] Bug:     ./blitz-qt() [0x81b83fd]
Abr 26 20:46:12.501 [err] Bug:     ./blitz-qt() [0x81b9436]
Abr 26 20:46:12.501 [err] Bug:     ./blitz-qt() [0x82e2af7]
Abr 26 20:46:12.501 [err] Bug:     ./blitz-qt(_Z12ThreadTorNetPv+0x3f) [0x82e2bef]
Abr 26 20:46:12.501 [err] Bug:     ./blitz-qt() [0x8268b80]
Abr 26 20:46:12.501 [err] Bug:     /usr/lib/i386-linux-gnu/libboost_thread.so.1.58.0(+0xdc05) [0xb71eac05]
Abr 26 20:46:12.501 [err] Bug:     /lib/i386-linux-gnu/libpthread.so.0(+0x61aa) [0xb368c1aa]
Abr 26 20:46:12.501 [err] Bug:     /lib/i386-linux-gnu/libc.so.6(clone+0x5e) [0xb33d202e]
Aborted (core dumped)


At this point I'm stuck and I cannot find any solutions searching in Google. Is this a Boost update problem, something about the Tor code, something wrong with my Boost installation or is it something else?

Regarding the daemon, I was able to compile, but then I also got runtime errors:
/usr/local/src/blitz/src$ ./blitzd
Apr 18 03:33:50.855 [err] tor_assertion_failed_(): Bug: tor/memarea.c:127: alloc_chunk: Assertion realign_pointer(res->next_mem) == res->next_mem failed; aborting.
Apr 18 03:33:50.873 [err] Bug: Assertion realign_pointer(res->next_mem) == res->next_mem failed in alloc_chunk at tor/memarea.c:127. Stack trace:
Apr 18 03:33:50.873 [err] Bug:     ./blitzd() [0x825ea5e]
Apr 18 03:33:50.873 [err] Bug:     ./blitzd() [0x83443ba]
Apr 18 03:33:50.873 [err] Bug:     ./blitzd() [0x82f01a6]
Apr 18 03:33:50.873 [err] Bug:     ./blitzd() [0x82f0278]
Apr 18 03:33:50.873 [err] Bug:     ./blitzd() [0x83372ee]
Apr 18 03:33:50.873 [err] Bug:     ./blitzd() [0x8306a54]
Apr 18 03:33:50.873 [err] Bug:     ./blitzd() [0x8306bc7]
Apr 18 03:33:50.873 [err] Bug:     ./blitzd() [0x8306ee8]
Apr 18 03:33:50.873 [err] Bug:     ./blitzd() [0x830711e]
Apr 18 03:33:50.873 [err] Bug:     ./blitzd() [0x828f979]
Apr 18 03:33:50.873 [err] Bug:     ./blitzd() [0x82944f1]
Apr 18 03:33:50.873 [err] Bug:     ./blitzd() [0x829481a]
Apr 18 03:33:50.873 [err] Bug:     ./blitzd() [0x830127f]
Apr 18 03:33:50.873 [err] Bug:     ./blitzd() [0x83022cc]
Apr 18 03:33:50.873 [err] Bug:     ./blitzd() [0x81732df]
Apr 18 03:33:50.873 [err] Bug:     ./blitzd() [0x81733be]
Apr 18 03:33:50.873 [err] Bug:     /usr/lib/i386-linux-gnu/libboost_thread.so.1.58.0(+0xdc05) [0xb76a5c05]
Apr 18 03:33:50.873 [err] Bug:     /lib/i386-linux-gnu/libpthread.so.0(+0x61aa) [0xb71ea1aa]
Apr 18 03:33:50.873 [err] Bug:     /lib/i386-linux-gnu/libc.so.6(clone+0x5e) [0xb6f2102e]
Aborted (core dumped)


The runtime problem seems to be quite similar in every case.
Has anyone been able to compile and run this in Ubuntu recently?
hero member
Activity: 686
Merit: 500
Fall seven times, stand up eight.
How long for the release? Keen to use it.
legendary
Activity: 2730
Merit: 1068
Juicin' crypto
looking forward to your releases...maybe it's good it's taking a little longer given alts are shot to hell right now.  hopefully blitz can moonshot at the same time alts start to come back.  Cool
legendary
Activity: 1188
Merit: 1001
Who is interested in bets with coin on poloniex , bittrex take a look here , Blitz accepted:
https://bitcointalksearch.org/topic/clamcoin-sportbook-offering-same-odds-as-major-btc-books-clamsportbookcom-1427765

if someone is interested to play this game there are  rewards, in blitz if you want
it can be installed on Android and works great with crome - firefox:
http://spellsofgenesis.com/
i offer account with pw to play with paid cards the game offers rewards until 30 April , rewards
will be split evenly at the end , you can see the counterparty wallet for how much is the reward
and if you want BTC or any other coin instead i will buy the BCY reward at market price.
legendary
Activity: 1393
Merit: 1001
Just downloaded the wallet still syncing. Do we have a Boot-loader? http://cryptochainer.com/dir/   This place would be a good place to store it. I have used it before and it seems to work well.

Ps. People will dump and we just need more people that buy. Some people got in at 3k  or less they might dump with btc going up.....But I do believe they are selling apples for peanuts. Maybe they like peanuts.
legendary
Activity: 2730
Merit: 1068
Juicin' crypto
The only problem I have with Blitz is that I don't have anymore btc to buy more Smiley

same here.

retards keep dumping tho to chase btc or the next hottest shit coin.

derp.
sr. member
Activity: 363
Merit: 250
The only problem I have with Blitz is that I don't have anymore btc to buy more Smiley
legendary
Activity: 1393
Merit: 1001
News??   Or calm before the moon storm?

If the storm is on the moon, I sure hope someone has the keys to the rocket. Seems they've been misplaced for the time being Smiley

haha yeah...so have all alts though.

wow, buying blitz this cheap should be illegal from what i see!  (esp with those ummm...slightly obvious walls on trex just waiting to disappear lmao).  once they do it's mewn time.

no reason this coin isn't x10 from here (or more).  Cool

nice works devs getting into the market you've been targeting....very soon i hope things will go very well for you.
Cant seem to get my wallet to sync. Any nodes? I am on w10


Hi,

addnode=33zvxmmkzuwske4c.onion
addnode=3a35vj3rdvsd2xll.onion
addnode=6iwvhrfxeasfguec.onion
addnode=doamhaip5ijaogsm.onion
addnode=e5z6bff2fg53cify.onion
addnode=gzzhm25kp7sxxmg2.onion
addnode=hzbhgawzdt7einvu.onion
addnode=iqg5xdksadhzrsyv.onion
addnode=qrgrie6pa424rgyi.onion
addnode=tbktpyyqtf6zrp7w.onion
addnode=u3aj3tk3z33yywjn.onion
addnode=wxhq7oweesizc4pr.onion
addnode=zussnjbbjkd3pab4.onion

Let me know if it works Smiley
Works....Thank You
hero member
Activity: 938
Merit: 500
One Token to Move Anything Anywhere
News??   Or calm before the moon storm?

If the storm is on the moon, I sure hope someone has the keys to the rocket. Seems they've been misplaced for the time being Smiley

haha yeah...so have all alts though.

wow, buying blitz this cheap should be illegal from what i see!  (esp with those ummm...slightly obvious walls on trex just waiting to disappear lmao).  once they do it's mewn time.

no reason this coin isn't x10 from here (or more).  Cool

nice works devs getting into the market you've been targeting....very soon i hope things will go very well for you.
Cant seem to get my wallet to sync. Any nodes? I am on w10


Hi,

addnode=33zvxmmkzuwske4c.onion
addnode=3a35vj3rdvsd2xll.onion
addnode=6iwvhrfxeasfguec.onion
addnode=doamhaip5ijaogsm.onion
addnode=e5z6bff2fg53cify.onion
addnode=gzzhm25kp7sxxmg2.onion
addnode=hzbhgawzdt7einvu.onion
addnode=iqg5xdksadhzrsyv.onion
addnode=qrgrie6pa424rgyi.onion
addnode=tbktpyyqtf6zrp7w.onion
addnode=u3aj3tk3z33yywjn.onion
addnode=wxhq7oweesizc4pr.onion
addnode=zussnjbbjkd3pab4.onion

Let me know if it works Smiley
legendary
Activity: 1393
Merit: 1001
News??   Or calm before the moon storm?

If the storm is on the moon, I sure hope someone has the keys to the rocket. Seems they've been misplaced for the time being Smiley

haha yeah...so have all alts though.

wow, buying blitz this cheap should be illegal from what i see!  (esp with those ummm...slightly obvious walls on trex just waiting to disappear lmao).  once they do it's mewn time.

no reason this coin isn't x10 from here (or more).  Cool

nice works devs getting into the market you've been targeting....very soon i hope things will go very well for you.
Cant seem to get my wallet to sync. Any nodes? I am on w10
legendary
Activity: 2730
Merit: 1068
Juicin' crypto
News??   Or calm before the moon storm?

If the storm is on the moon, I sure hope someone has the keys to the rocket. Seems they've been misplaced for the time being Smiley

haha yeah...so have all alts though.

wow, buying blitz this cheap should be illegal from what i see!  (esp with those ummm...slightly obvious walls on trex just waiting to disappear lmao).  once they do it's mewn time.

no reason this coin isn't x10 from here (or more).  Cool

nice works devs getting into the market you've been targeting....very soon i hope things will go very well for you.
full member
Activity: 171
Merit: 100
I sense moon for this coin.
I've felt that way for awhile.

Blitzcoin has it going on when you look for content in a coin...not to mention the >4M
Upside potential is...well the sky would be that and the down side...it was a fun ride
and I'm glad I was part of something that might have changed the world.

Shouldn't Blitz being added to Azure be on the main post of thread? or post title?


legendary
Activity: 1120
Merit: 1000
I sense moon for this coin.
hero member
Activity: 938
Merit: 500
One Token to Move Anything Anywhere
The Viral Exchange Update:

2.8.1

- Add recaptcha on account creation
- Add recaptcha on random confirm action
- Add anti-bot checks on twitter linking
- Show all linked accounts on a new users settings page
- Correct a problem where www url wasn't working
- Improve coin payment security
- Add a help desk: https://theviralexchange.freshdesk.com
- Add a toolbar at the bottom of the site
- Fix a problem with password change
- Replace Madrill email with SendGrid
- Add multiple security fixes (always use https, XSS protection, error stacktrace, etc.)
- Etc.

If you have any problem, please clear cache first.


Great work Alpho2k.

I have been privately testing Fitalize (earn blitz while using your Fitbit device) is going very well. Our slack channel https://bitalize-slack-invite.herokuapp.com/. We will need some fitbit testers very soon Smiley

Cryptoprivacy
hero member
Activity: 938
Merit: 500
One Token to Move Anything Anywhere
Interesting article for our investors, Fitalize is coming...... (True adoption)

Please retweet : https://twitter.com/viralexchangex/status/717082845462839296

Cryptoprivacy

Very innovative idea, would the walking reward be constant forever, or change over time (e.g you get a bit less as you get fitter and walk further)

Thanks, all details will be revealed soon, don't forget to also check out theviralexchange.com
How this website works?


Please check out our tutorial video: https://m.youtube.com/watch?v=DgF8p_e3JTk
sr. member
Activity: 490
Merit: 264
| Privacy Advocate | Game Theory | Free Thinker |
full member
Activity: 206
Merit: 100
While men's faith is down, I rock my own w my lovr
Interesting article for our investors, Fitalize is coming...... (True adoption)

Please retweet : https://twitter.com/viralexchangex/status/717082845462839296

Cryptoprivacy

Very innovative idea, would the walking reward be constant forever, or change over time (e.g you get a bit less as you get fitter and walk further)

Thanks, all details will be revealed soon, don't forget to also check out theviralexchange.com
How this website works?
Pages:
Jump to: