Author Topic: The Final Countdown!  (Read 14901 times)

0 Members and 1 Guest are viewing this topic.

Offline emailtooaj

Sound Editor of Beyondbitcoin Hangouts. Listen to latest here - https://beyondbitcoin.org support the Hangouts! BTS Tri-Fold Brochure https://bitsharestalk.org/index.php/topic,15169.0.html
Tip BROWNIE.PTS to EMAILTOOAJ

Offline twentythree

  • Newbie
  • *
  • Posts: 18
    • View Profile
did someone know when shape shift will get back with bitshares?


Offline pseudoscops

Well done guys!

Tuck Fheman

  • Guest

Offline twentythree

  • Newbie
  • *
  • Posts: 18
    • View Profile
only when i try to backup on mac client it freeze and nothing happens. and i see no backup file that would be created.

but seems to work now on both web wallet and client. including value of old account

Offline bytemaster

For the latest updates checkout my blog: http://bytemaster.bitshares.org
Anything said on these forums does not constitute an intent to create a legal obligation or contract between myself and anyone else.   These are merely my opinions and I reserve the right to change them at any time.

Offline Thom

Good PR consists of all those little details that sum up into the overall perception.

This just highlights one of the teams greatest weaknesses IMO - communicating the important details.
Injustice anywhere is a threat to justice everywhere - MLK |  Verbaltech2 Witness Reports: https://bitsharestalk.org/index.php/topic,23902.0.html

Offline Thom


Is that "now" part of the repository name?
No.

Code: [Select]
#!/bin/bash
git clone https://github.com/bitshares/bitshares-2 /home/admin/BitShares2_build
git fetch --all
###git checkout bitshares-2 && git pull    ######## Removed this checkout line on 2nd attempt below
git submodule update --init --recursive

You must cd into /home/admin/BitShares2_build after cloning the repo, otherwise git will try to fetch in the current dir.

Thanks PC, building now. I guess I need to get more familiar with git. So different from other src code systems I've used before, like svc.

Would have been nice to use wackou's build tools, but I believe the root repository is built in and is set to github/cryptonomex. You can build any tag from that, but I don't think it works for an entirely different repository. I could be mistaken tho.

I started off from the assumption the build was the latest master, just like the testnet. It just really puzzles me why I seem to be the only one that can't read between the lines around here and "intuit" that the repo was changed or that cryptonomex would build the binaries or or or ???

Anyway, past that thanks to you & xeroc, onward and upward! 50% of build process complete...
Injustice anywhere is a threat to justice everywhere - MLK |  Verbaltech2 Witness Reports: https://bitsharestalk.org/index.php/topic,23902.0.html

jakub

  • Guest

Can the bitshares homepage be updating with a message saying the the transition in progress, please check back today for further instructions or something?

 +5%
Let's take care of the PR side of things.
Definitely there should be a message on the website explaining what's going on right now for those who are unable to follow the forum so closely as we do.

Updating the website will probably take 5-10 minutes and if that saves just one user from being confused or frustrated - it's worth it.
Good PR consists of all those little details that sum up into the overall perception.

EDIT: I can see it's done already  :)
« Last Edit: October 13, 2015, 06:00:21 pm by jakub »

Offline twentythree

  • Newbie
  • *
  • Posts: 18
    • View Profile
cool already downloaded it. can i restore my web wallet on the client?

Offline pc

  • Hero Member
  • *****
  • Posts: 1530
    • View Profile
    • Bitcoin - Perspektive oder Risiko?
  • BitShares: cyrano

Is that "now" part of the repository name?
No.

Code: [Select]
#!/bin/bash
git clone https://github.com/bitshares/bitshares-2 /home/admin/BitShares2_build
git fetch --all
###git checkout bitshares-2 && git pull    ######## Removed this checkout line on 2nd attempt below
git submodule update --init --recursive

You must cd into /home/admin/BitShares2_build after cloning the repo, otherwise git will try to fetch in the current dir.
Bitcoin - Perspektive oder Risiko? ISBN 978-3-8442-6568-2 http://bitcoin.quisquis.de

Offline twentythree

  • Newbie
  • *
  • Posts: 18
    • View Profile
will we get a new client later? or did we get only new web wallet for the beginning?

Offline Thom

Is this normal, can it be safely ignored? I wouldn't have mentioned it if were only a warning, but it says error..

Code: [Select]
[ 81%] Building CXX object libraries/app/CMakeFiles/graphene_app.dir/plugin.cpp.o
/home/admin/BitShares2_build/libraries/app/application.cpp: In lambda function:
/home/admin/BitShares2_build/libraries/app/application.cpp:277:16: error: ‘genesis’ was not declared in this scope
                genesis.initial_chain_id = fc::sha256::hash( egenesis_json );
                ^

No, the build failed using the same method as I have always used.



you are sure you have pulled the most recent version?

Here are the commands used:

git clone https://github.com/cryptonomex/graphene.git "/home/admin/BitShares2_build
git fetch --all
git checkout master && git pull

git submodule update --init --recursive

the repository is github.com/bitshares/bitshares-2 now .. you need to follow the submodule procedure again too

This throws me off, didn't expect a new build process. Is that "now" part of the repository name? I put these commands in a shell script but something is not right apparently. See what I mean about being explicit?

Code: [Select]
#!/bin/bash
git clone https://github.com/bitshares/bitshares-2 /home/admin/BitShares2_build
git fetch --all
###git checkout bitshares-2 && git pull    ######## Removed this checkout line on 2nd attempt below
git submodule update --init --recursive

With checkout...
Code: [Select]
admin@seed07:~$ ./buildIt
Cloning into '/home/admin/BitShares2_build'...
remote: Counting objects: 10363, done.
remote: Compressing objects: 100% (1002/1002), done.
remote: Total 10363 (delta 670), reused 0 (delta 0), pack-reused 9269
Receiving objects: 100% (10363/10363), 16.41 MiB | 4.37 MiB/s, done.
Resolving deltas: 100% (7124/7124), done.
Checking connectivity... done.
fatal: Not a git repository (or any of the parent directories): .git
fatal: Not a git repository (or any of the parent directories): .git

Without checkout...
admin@seed07:~$ rm -rf BitShares2_build/*
admin@seed07:~$ rm -rf BitShares2_build/.git*
admin@seed07:~$ nano buildIt
admin@seed07:~$ ./buildIt
Cloning into '/home/admin/BitShares2_build'...
remote: Counting objects: 10363, done.
remote: Compressing objects: 100% (1002/1002), done.
remote: Total 10363 (delta 670), reused 0 (delta 0), pack-reused 9269
Receiving objects: 100% (10363/10363), 16.41 MiB | 5.98 MiB/s, done.
Resolving deltas: 100% (7124/7124), done.
Checking connectivity... done.
fatal: Not a git repository (or any of the parent directories): .git
fatal: Not a git repository (or any of the parent directories): .git
fatal: Not a git repository (or any of the parent directories): .git

Injustice anywhere is a threat to justice everywhere - MLK |  Verbaltech2 Witness Reports: https://bitsharestalk.org/index.php/topic,23902.0.html

Offline xeroc

  • Board Moderator
  • Hero Member
  • *****
  • Posts: 12922
  • ChainSquad GmbH
    • View Profile
    • ChainSquad GmbH
  • BitShares: xeroc
  • GitHub: xeroc