Author

Topic: BiblePay | 10% to Orphan-Charity | RANDOMX MINING | Sanctuaries (Masternodes) - page 767. (Read 243376 times)

full member
Activity: 770
Merit: 100
FERO whats not important to you doesnt mean it wont be important for other ppl .. check all pools what exists,how it looks concept,this is transparency if were presenting like charity
newbie
Activity: 54
Merit: 0
znffal  Luke, very good idea,agree

jaapgkv all slovak guys,not only me

Just dont know why it is that important. Does the pool reward those who found the block?
full member
Activity: 574
Merit: 104
I think I reinstalled watchman earlier and it already fixed the problem.. not sure if I should upgrade now cause its working flawlessly.. think I'll have a close watch on it for the next couple of days.

I would upgrade just to be sure. It's just one minute of work and you don't have to restart your sanctuary or anything.
newbie
Activity: 60
Merit: 0
I think I reinstalled watchman earlier and it already fixed the problem.. not sure if I should upgrade now cause its working flawlessly.. think I'll have a close watch on it for the next couple of days.
full member
Activity: 406
Merit: 101
Working here as well.  Good work and actually very happy this bug occurred so early in the life of the program.
full member
Activity: 221
Merit: 100
BiblePay - Watchman-On-The-Wall v1.0.0.2
Mandatory Upgrade for Sanctuaries Only

- Prevent decimal format handling errors

Upgrade instructions:

cd ~/.biblepaycore
rm watchman -R
git clone https://github.com/biblepay/watchman.git
cd watchman
virtualenv venv
venv/bin/pip install -r requirements.txt

To test:
venv/bin/python bin/watchman.py
(Ensure watchman.py returns no errors)


applied.  thanks Rob
full member
Activity: 200
Merit: 101
Tested and working. Thanks for the quick turn around.
full member
Activity: 1260
Merit: 115
Tested on a sanctuary, no errors/output! Thanks Rob Smiley
full member
Activity: 1176
Merit: 215
Jesus is the King of Kings and Lord of Lords
BiblePay - Watchman-On-The-Wall v1.0.0.2
Mandatory Upgrade for Sanctuaries Only

- Prevent decimal format handling errors

Upgrade instructions:

cd ~/.biblepaycore
rm watchman -R
git clone https://github.com/biblepay/watchman.git
cd watchman
virtualenv venv
venv/bin/pip install -r requirements.txt

To test:
venv/bin/python bin/watchman.py
(Ensure watchman.py returns no errors)
full member
Activity: 1176
Merit: 215
Jesus is the King of Kings and Lord of Lords
If you needed some more info. This is the error I'm getting.

Code:
Traceback (most recent call last):
  File "bin/watchman.py", line 244, in
    main()
  File "bin/watchman.py", line 191, in main
    perform_biblepayd_object_sync(biblepayd)
  File "bin/watchman.py", line 24, in perform_biblepayd_object_sync
    GovernanceObject.sync(biblepayd)
  File "lib/models.py", line 87, in sync
    (go, subobj) = self.import_gobject_from_biblepayd(biblepayd, item)
  File "lib/models.py", line 142, in import_gobject_from_biblepayd
    subobj, created = subclass.get_or_create(object_hash=object_hash, defaults=subdikt)
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 4800, in get_or_create
    return query.get(), False
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 3090, in get
    return next(clone.execute())
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 2267, in next
    obj = self.iterate()
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 2253, in iterate
    return self.process_row(row)
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 2331, in process_row
    setattr(instance, column, func(row[i]))
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 1072, in python_value
    return decimal.Decimal(str(value))
  File "/usr/lib/python2.7/decimal.py", line 547, in __new__
    "Invalid literal for Decimal: %r" % value)
  File "/usr/lib/python2.7/decimal.py", line 3873, in _raise_error
    raise error(explanation)
decimal.InvalidOperation: Invalid literal for Decimal: '203,096'

Yes, thanks, thats it. 
full member
Activity: 200
Merit: 101
If you needed some more info. This is the error I'm getting.

Code:
Traceback (most recent call last):
  File "bin/watchman.py", line 244, in
    main()
  File "bin/watchman.py", line 191, in main
    perform_biblepayd_object_sync(biblepayd)
  File "bin/watchman.py", line 24, in perform_biblepayd_object_sync
    GovernanceObject.sync(biblepayd)
  File "lib/models.py", line 87, in sync
    (go, subobj) = self.import_gobject_from_biblepayd(biblepayd, item)
  File "lib/models.py", line 142, in import_gobject_from_biblepayd
    subobj, created = subclass.get_or_create(object_hash=object_hash, defaults=subdikt)
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 4800, in get_or_create
    return query.get(), False
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 3090, in get
    return next(clone.execute())
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 2267, in next
    obj = self.iterate()
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 2253, in iterate
    return self.process_row(row)
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 2331, in process_row
    setattr(instance, column, func(row[i]))
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 1072, in python_value
    return decimal.Decimal(str(value))
  File "/usr/lib/python2.7/decimal.py", line 547, in __new__
    "Invalid literal for Decimal: %r" % value)
  File "/usr/lib/python2.7/decimal.py", line 3873, in _raise_error
    raise error(explanation)
decimal.InvalidOperation: Invalid literal for Decimal: '203,096'
full member
Activity: 1176
Merit: 215
Jesus is the King of Kings and Lord of Lords
all MNs except for 3 are in WATCHDOG_EXPIRED" status !!


sorry for bolding, but it's kinda urgent .   
Can somebody shed some light ?


only 3 MNs are currently  enabled out of 51 .

can somebody explain what is happening with MNs ?


Just walked in, Ive been out doing some construction.

I see the issue with every sanctuary down.
I was able to trace the issue down to a piece of code in our watchman-on-the-wall.

This is going to require a patch to watchman only, but not a patch to BiblePay.

I need to jump on this and get this working, please hang on, Ill be back ASAP.

Rob
full member
Activity: 364
Merit: 102
Are you advertising anywhere? What's your domain? Godsbitcoin.com Gods[Suspicious link removed]? I'm interested.

biblepay.org

The one you mentioned is not associated with this project as far as I know
newbie
Activity: 56
Merit: 0
Understandably, but also there is a scarcity factor here, supply and demand,
how many Technical Writers and Public Relations people are also comfortable/knowledgeable about Cryptocurrency?
and also how many are specifically interested and knowledgeable about our project?

The U.S. vs the World pay rates is an interesting point, cryptocurrencies are a global currency,
most peoples pay is tied to where they live and the economic conditions and taxes/politics of where they live,
but since we all have internet access we can all work together, I wonder what the global payrate for work will be.

Id be interested on your thoughts on what you believe the different payscales and payrates for different jobs that have been proposed so far are.
And also what would be your payrate for researching, combining and publishing those results be? Smiley

I agree that we probably get better content from our writers due to their knowledge and passion, but PR firms learn the jobs the cover as they cover them and I'd wager tech writers do to.  I'm not saying we should shop them out to "pros".

I'm not the best person to ask for a hard and fast number.  Because I believe that most of the work done should be below market rate because 1) It's a charitable cryptocurrency and 2) Most people doing the work are invested in the coin and benefit from the coin getting stronger.  That is not to say it should all be free, but if I so certain that something is good for the coin that I'm willing to spearhead the idea and make the proposal, I feel I should be willing to accept below market wages at this point since our shared believe is this coin will rise.

And what have you contributed to prop yourself up as the judge of other people's time and worthyness? Clicking a withdraw button?

I warned people on this dynamic. Masternodes monopolized and exploited by early participants leading to control of the treasury funds. Masternodes will receive more coins and make more masternodes. Leading to more imbalance and concentration. All in the name of the poor children of course.

Is it not strange how you never hear anyone talking about the Bible, Jesus, or God here? Just about money and slaps on the back on 'orphan counts'

 
newbie
Activity: 1
Merit: 0
Are you advertising anywhere? What's your domain? Godsbitcoin.com Gods[Suspicious link removed]? I'm interested.
full member
Activity: 1260
Merit: 115
I was really waiting for the launch of the masternode, you could not give me instructions on how to start, or how can I participate in the masternode?

http://wiki.biblepay.org/Create_Sanctuary
http://wiki.biblepay.org/Create_Sanctuary_2
full member
Activity: 406
Merit: 101
Understandably, but also there is a scarcity factor here, supply and demand,
how many Technical Writers and Public Relations people are also comfortable/knowledgeable about Cryptocurrency?
and also how many are specifically interested and knowledgeable about our project?

The U.S. vs the World pay rates is an interesting point, cryptocurrencies are a global currency,
most peoples pay is tied to where they live and the economic conditions and taxes/politics of where they live,
but since we all have internet access we can all work together, I wonder what the global payrate for work will be.

Id be interested on your thoughts on what you believe the different payscales and payrates for different jobs that have been proposed so far are.
And also what would be your payrate for researching, combining and publishing those results be? Smiley

I agree that we probably get better content from our writers due to their knowledge and passion, but PR firms learn the jobs the cover as they cover them and I'd wager tech writers do to.  I'm not saying we should shop them out to "pros".

I'm not the best person to ask for a hard and fast number.  Because I believe that most of the work done should be below market rate because 1) It's a charitable cryptocurrency and 2) Most people doing the work are invested in the coin and benefit from the coin getting stronger.  That is not to say it should all be free, but if I so certain that something is good for the coin that I'm willing to spearhead the idea and make the proposal, I feel I should be willing to accept below market wages at this point since our shared believe is this coin will rise.
full member
Activity: 1260
Merit: 115
One trap I think we risk falling into with comparing what we make in our normal jobs or what a pro makes is this.  If we compare what we "could" make in our normal job doing a non-related job, it compares apples to oranges.  So if a volunteer from a 3rd world country says they make $4/day and the job took 4 hours should we pay them $2?  Or if a pro athlete wanted to code for us, their time isn't really worth $50k/hour to do that coding.  Comparing to average wages is better, but the issue there is if I'm writing technical documents (which I think I write reasonably), I'm still probably not going to be as good as someone who does that for a living.  If we could hire a professional tech writer for $20-25/hr why would we pay the same for a non-tech writer to do the same?

I think over time we'll see some of this shake out and we'll start to see standard sorts of values be asked for.  But my opinion is our standard rate shouldn't be the same as the industry rate.  And certainly not if the person doing the work is not comparably trained/skilled to an industry professional.

Understandably, but also there is a scarcity factor here, supply and demand,
how many Technical Writers and Public Relations people are also comfortable/knowledgeable about Cryptocurrency?
and also how many are specifically interested and knowledgeable about our project?

The U.S. vs the World pay rates is an interesting point, cryptocurrencies are a global currency,
most peoples pay is tied to where they live and the economic conditions and taxes/politics of where they live,
but since we all have internet access we can all work together, I wonder what the global payrate for work will be.

Id be interested on your thoughts on what you believe the different payscales and payrates for different jobs that have been proposed so far are.
And also what would be your payrate for researching, combining and publishing those results be? Smiley
full member
Activity: 221
Merit: 100
all MNs except for 3 are in WATCHDOG_EXPIRED" status !!

sorry for bolding, but it's kinda urgent .   
Can somebody shed some light ?


only 3 MNs are currently  enabled out of 51 .

can somebody explain what is happening with MNs ?

Looking at masternode winners it looks like the Masternodes are still working (since there are ten different winners listed), it might be a reporting error.  However, the double winner issue is very apparent in the list.


watchman.py error:

Code:
 ./venv/bin/python bin/watchman.py
Traceback (most recent call last):
  File "bin/watchman.py", line 244, in
    main()
  File "bin/watchman.py", line 191, in main
    perform_biblepayd_object_sync(biblepayd)
  File "bin/watchman.py", line 24, in perform_biblepayd_object_sync
    GovernanceObject.sync(biblepayd)
  File "lib/models.py", line 87, in sync
    (go, subobj) = self.import_gobject_from_biblepayd(biblepayd, item)
  File "lib/models.py", line 142, in import_gobject_from_biblepayd
    subobj, created = subclass.get_or_create(object_hash=object_hash, defaults=subdikt)
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 4800, in get_or_create
    return query.get(), False
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 3090, in get
    return next(clone.execute())
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 2267, in next
    obj = self.iterate()
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 2253, in iterate
    return self.process_row(row)
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 2331, in process_row
    setattr(instance, column, func(row[i]))
  File "/root/.biblepaycore/watchman/venv/local/lib/python2.7/site-packages/peewee.py", line 1072, in python_value
    return decimal.Decimal(str(value))
  File "/usr/lib/python2.7/decimal.py", line 547, in __new__
    "Invalid literal for Decimal: %r" % value)
  File "/usr/lib/python2.7/decimal.py", line 3873, in _raise_error
    raise error(explanation)
decimal.InvalidOperation: Invalid literal for Decimal: '203,096'
Jump to: