Bitcoin Forum
June 22, 2024, 04:24:14 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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 ... 164 »
  Print  
Author Topic: BiblePay - New Coin Launch - Official Thread  (Read 119799 times)
DisasterFaster
Sr. Member
****
Offline Offline

Activity: 770
Merit: 264



View Profile
August 10, 2017, 01:49:56 PM
 #641

Can anyone confirm whether or not this is the most recent wallet version?

Biblepay Core version 1.0.1.9 (64-bit)

For some reason after rebooting the wallet it gets stuck on the synchronization at 0 hours behind?
Ginzink
Full Member
***
Offline Offline

Activity: 462
Merit: 118


View Profile
August 10, 2017, 02:26:49 PM
 #642

Can anyone confirm whether or not this is the most recent wallet version?

Biblepay Core version 1.0.1.9 (64-bit)

For some reason after rebooting the wallet it gets stuck on the synchronization at 0 hours behind?

I got the same, but it only took some time. Try to leave it on for some time.
happy_merchant
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
August 10, 2017, 02:41:15 PM
 #643

So I was just looking over the interfaces at compassion.com (thats the org we started initially partnering with to sponsor orphans.  Each longest waiting child is $40 a month, btw.).  So I reached out to May the director of the region I am in, and she expressed interest in holding meetings with conf calls for IT integration (ideas like an API to sponsor an orphan, a query for the sponsored orphan list, etc). 

This morning, I found an interface where we can electronically write a letter (with pictures) to an orphan that we sponsor, and we can receive a list of incoming letters from the orphans who write to us.  I was thinking we should look into adding this ability to the wallet, so the community can take over this function.  (Since normally, to have a social media presence, we have someone manually manning twitter, facebook, and handling the correspondence between the orphans and the community.  (We would probably need one full time volunteer just to write to our orphans!).

So trying to do this in a more efficient way, if we clone our Send BBP page, and make a write to sponsored orphan page, we could make a multiline textbox with a space for a letter to a child, and let anyone on the blockchain write a letter to one of our current sponsored orphans, and shoot it through the Compassion API.  This may sound funny or rife for abuse, but otoh, its important, because these children are waiting for us and some are depressed, and just waiting for letters.  The interface is already there, and that would take one function off of a full time volunteer.  As far as receiving letters from our orphans back to the community, we could potentially insert those letters back in the chain and allow our community to view them in the wallet.

I would be a little worried that some users might intentionally send offensive materials in an effort to jeopardize the project's relationship with the charity partner. If the people at compassion.com are okay with filtering the occasional offensive letter on their end it might work, since I doubt it'd be a common occurrence.

Would it be practical to somehow have Sanctuaries involved in checking the letters once masternodes are implemented?
GeniusX
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
August 10, 2017, 02:44:25 PM
 #644

https://www.youtube.com/watch?v=26lW1eE5Mn0&feature=youtu.be

My Biblepay Rig
civilufo
Sr. Member
****
Offline Offline

Activity: 375
Merit: 250



View Profile
August 10, 2017, 02:53:20 PM
 #645

Im having trouble with linux as well (Ubuntu 16.04)

==== References:
https://github.com/biblepay/biblepay/blob/master/BuildBiblePay.txt
https://michael.mckinnon.id.au/2016/05/13/building-a-namecoin-server-with-ubuntu-16-04/
https://github.com/bitcoin/bitcoin/blob/master/doc/build-unix.md

==== Step by Step Commands (not sure if this is all correct, please someone point out any issues)
sudo apt-get install g++
sudo apt install make
sudo apt-get install build-essential
sudo apt-get install autoconf libtool pkg-config
sudo apt-get install libboost-all-dev libssl-dev libevent-dev

sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler

cd /home/yourname
git clone https://github.com/biblepay/biblepay

BP_ROOT=$(pwd)
BDB_PREFIX="${BP_ROOT}/db4"
mkdir -p $BDB_PREFIX

wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef  db-4.8.30.NC.tar.gz' | sha256sum -c

tar -xzvf db-4.8.30.NC.tar.gz
cd db-4.8.30.NC/build_unix
../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX
make install

cd $BP_ROOT
./autogen.sh
./configure LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/"
sudo make
===================

And then it freezes on last command sudo make, last output: 
  CXX      libbitcoin_server_a-init.o

Ive been waiting 20 minutes,
is it frozen?, did I do something wrong? or do I need to wait longer?
(Its just a one core machine Im testing/building on, I have very little Linux experience and almost no mining experience)

The very first compile takes over an hour on a fast machine as it has to build all the obj files and moc stuff for qt.



Wow, one hour is really lol... i never built a wallet with more than 30 minutes before. But I will try with togoshigekata method in my Ubuntu 16.04 later. Will update my status.

Okay, I managed to build the wallet successfully. But it is not the gui version, or maybe I overlook it? How to build for the qt GUI wallet?

If all your qt dependencies are there then look in biblepay/src/qt for the qt binary.

Thank you very much. You really save my day Smiley

I'm not very handy with Linux compile and qt, mainly on Windows machine.

GeniusX
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
August 10, 2017, 02:58:45 PM
 #646

Im having trouble with linux as well (Ubuntu 16.04)

==== References:
https://github.com/biblepay/biblepay/blob/master/BuildBiblePay.txt
https://michael.mckinnon.id.au/2016/05/13/building-a-namecoin-server-with-ubuntu-16-04/
https://github.com/bitcoin/bitcoin/blob/master/doc/build-unix.md

==== Step by Step Commands (not sure if this is all correct, please someone point out any issues)
sudo apt-get install g++
sudo apt install make
sudo apt-get install build-essential
sudo apt-get install autoconf libtool pkg-config
sudo apt-get install libboost-all-dev libssl-dev libevent-dev

sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler

cd /home/yourname
git clone https://github.com/biblepay/biblepay

BP_ROOT=$(pwd)
BDB_PREFIX="${BP_ROOT}/db4"
mkdir -p $BDB_PREFIX

wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef  db-4.8.30.NC.tar.gz' | sha256sum -c

tar -xzvf db-4.8.30.NC.tar.gz
cd db-4.8.30.NC/build_unix
../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX
make install

cd $BP_ROOT
./autogen.sh
./configure LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/"
sudo make
===================

And then it freezes on last command sudo make, last output: 
  CXX      libbitcoin_server_a-init.o

Ive been waiting 20 minutes,
is it frozen?, did I do something wrong? or do I need to wait longer?
(Its just a one core machine Im testing/building on, I have very little Linux experience and almost no mining experience)

The very first compile takes over an hour on a fast machine as it has to build all the obj files and moc stuff for qt.



Wow, one hour is really lol... i never built a wallet with more than 30 minutes before. But I will try with togoshigekata method in my Ubuntu 16.04 later. Will update my status.

Okay, I managed to build the wallet successfully. But it is not the gui version, or maybe I overlook it? How to build for the qt GUI wallet?

If all your qt dependencies are there then look in biblepay/src/qt for the qt binary.

Thank you very much. You really save my day Smiley

I'm not very handy with Linux compile and qt, mainly on Windows machine.


Can you share all true commands here please? Thanks
smoosh
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
August 10, 2017, 03:04:31 PM
 #647

ok am i doing something wrong. I had been mining for about 5 days on an older laptop and had not found anything so i figured ok, maybe its because its older it does not have the power to do this. So 2 days ago i used some free credits to spin up a could server to do nothing but hash biblepay. 2 days and still nothing. Here is my info



15:01:10

getmininginfo


15:01:10

{
  "blocks": 2543,
  "currentblocksize": 1000,
  "currentblocktx": 0,
  "difficulty": 0.02009845991238194,
  "errors": "",
  "genproclimit": 15,
  "network_khashps": 8197.110849637433,
  "hashps": 129345.4001071014,
  "minerstarttime": "08-09-2017 19:41:18",
  "pooledtx": 0,
  "testnet": false,
  "chain": "main",
  "biblepay-generate": true,
  "poolinfo1": "",
  "poolinfo2": "",
  "poolinfo3": "",
  "poolmining": false
}

What am i doing wrong or am i just that unlucky.


jc12345
Legendary
*
Offline Offline

Activity: 1638
Merit: 1013


View Profile
August 10, 2017, 03:09:27 PM
 #648

ok am i doing something wrong. I had been mining for about 5 days on an older laptop and had not found anything so i figured ok, maybe its because its older it does not have the power to do this. So 2 days ago i used some free credits to spin up a could server to do nothing but hash biblepay. 2 days and still nothing. Here is my info



15:01:10

getmininginfo


15:01:10

{
  "blocks": 2543,
  "currentblocksize": 1000,
  "currentblocktx": 0,
  "difficulty": 0.02009845991238194,
  "errors": "",
  "genproclimit": 15,
  "network_khashps": 8197.110849637433,
  "hashps": 129345.4001071014,
  "minerstarttime": "08-09-2017 19:41:18",
  "pooledtx": 0,
  "testnet": false,
  "chain": "main",
  "biblepay-generate": true,
  "poolinfo1": "",
  "poolinfo2": "",
  "poolinfo3": "",
  "poolmining": false
}

What am i doing wrong or am i just that unlucky.




You are not doing anything wrong. Iv ran 600k for a day without any blocks and found 2 just as I was going to shut it down. I am letting it run a little while longer. Hopefully the pool will be up soon.
smoosh
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
August 10, 2017, 03:16:28 PM
 #649

ok am i doing something wrong. I had been mining for about 5 days on an older laptop and had not found anything so i figured ok, maybe its because its older it does not have the power to do this. So 2 days ago i used some free credits to spin up a could server to do nothing but hash biblepay. 2 days and still nothing. Here is my info



15:01:10

getmininginfo


15:01:10

{
  "blocks": 2543,
  "currentblocksize": 1000,
  "currentblocktx": 0,
  "difficulty": 0.02009845991238194,
  "errors": "",
  "genproclimit": 15,
  "network_khashps": 8197.110849637433,
  "hashps": 129345.4001071014,
  "minerstarttime": "08-09-2017 19:41:18",
  "pooledtx": 0,
  "testnet": false,
  "chain": "main",
  "biblepay-generate": true,
  "poolinfo1": "",
  "poolinfo2": "",
  "poolinfo3": "",
  "poolmining": false
}

What am i doing wrong or am i just that unlucky.




You are not doing anything wrong. Iv ran 600k for a day without any blocks and found 2 just as I was going to shut it down. I am letting it run a little while longer. Hopefully the pool will be up soon.

When you say 600k is that the hashps? what type of processor are you using?
GeniusX
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
August 10, 2017, 03:39:19 PM
 #650

buying BBP  make your offer
Ginzink
Full Member
***
Offline Offline

Activity: 462
Merit: 118


View Profile
August 10, 2017, 03:42:57 PM
 #651

buying BBP  make your offer

80 000 coins 200 satoshi each.
ACP
Hero Member
*****
Offline Offline

Activity: 612
Merit: 520



View Profile
August 10, 2017, 03:54:33 PM
 #652

Why is god only valued at 30 satoshi?
I mean I will even have to buy some bags for cheap god
777 satoshi should be target ok , thank you.
I think some of the bigger whales are waiting on the sidelines to ensure we do what we say we will do: We will dump the orphan cold wallet, spend 100% on orphans, and provide an orphan database that is auditable on the expense side, then when they feel more comfortable that this is 100% legit I think we will get a lot more attention.  It should become very clear to them within 60 days.


As I said. I'm in , I like the idea of helping others so I will be watching.
mdikmetas
Full Member
***
Offline Offline

Activity: 616
Merit: 118



View Profile
August 10, 2017, 04:16:57 PM
 #653

i cant understand how to mine?
jc12345
Legendary
*
Offline Offline

Activity: 1638
Merit: 1013


View Profile
August 10, 2017, 04:18:34 PM
 #654

Dev Can you explain the reasoning behind the size of the block reward and the effect on inflation.
tiras
Full Member
***
Offline Offline

Activity: 221
Merit: 100


View Profile
August 10, 2017, 05:34:56 PM
 #655

buying BBP  make your offer


https://c-cex.com/?id=regok

BiblePay (BBP) | Reddit - Twitter - Forum - Slack - Discord | C-CEX - CoinsMarkets | Love one another, be a good Samaritan, help those in distress and spread the gospel
xxkaiwaxx
Sr. Member
****
Offline Offline

Activity: 479
Merit: 253



View Profile
August 10, 2017, 05:51:32 PM
 #656

Dev Can you explain the reasoning behind the size of the block reward and the effect on inflation.

I dont know Jack about anything ^^"

...But would it have something to do with how Difficult it is to mine?

Or...If the Pool is about to "nullify" the difficulty factor ...then...would raising the Block Time even things out perhaps? (Again i dont know Jack ^^")
happy_merchant
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
August 10, 2017, 06:12:22 PM
 #657

I dont know Jack about anything ^^"

...But would it have something to do with how Difficult it is to mine?

Or...If the Pool is about to "nullify" the difficulty factor ...then...would raising the Block Time even things out perhaps? (Again i dont know Jack ^^")

Difficulty in crypto is a value that adjusts with the network hashrate such that the time between blocks will remain statistically consistent. It's just a tool to ensure that new currency is produced at a stable rate, completely unrelated to the amount of currency rewarded per block. Pools are unrelated to difficulty, they merely even out the randomness of solo mining. You don't need to increase block times if network hashrates increase because difficulty is by definition the value that keeps the block time consistent regardless of how much processing power is thrown at the blockchain.

The reward is purely a design choice. I'm sure the devs had a reason for going with 20k and there are some good reasons for decide to go with high volume or low volume, but as far as miners  and traders are concerned it doesn't really matter whether you're dealing with a small number of high priced coins or a large number of low priced coins.

Victory33
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
August 10, 2017, 06:20:23 PM
 #658

Can't wait for the pool. Solo mining is a bit hard Sad I hope there will be now standalone miner for long time so not botnets.

   SEMUX   -   An innovative high-performance blockchain platform   
▬▬▬▬▬      Powered by Semux BFT consensus algorithm      ▬▬▬▬▬
Github    -    Discord    -    Twitter    -    Telegram    -    Get Free Airdrop Now!
gradys225
Full Member
***
Offline Offline

Activity: 280
Merit: 100


View Profile
August 10, 2017, 07:17:11 PM
 #659

wallet is not synchronized! where the node view ?
mdikmetas
Full Member
***
Offline Offline

Activity: 616
Merit: 118



View Profile
August 10, 2017, 07:32:28 PM
 #660

how to mine solo
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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 ... 164 »
  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!