Pages:
Author

Topic: dcr.suprnova.cc - Suprnova's Decred Pool - page 10. (Read 27611 times)

legendary
Activity: 2688
Merit: 1240
Is the pool down?
My dashboard is not showing my workers and the pool hashrate at all!


Hmm, nope, all good here.

My workers are shown perfectly and I also see pool hash, balance etc.

There was a DNS update 2-3 days ago, maybe you're still having the old ip entry in your cache? Try using Google's DNS 8.8.8.8 and try again

EDIT:

Found the error on my side ! Fixed, many thanks for info !
legendary
Activity: 1960
Merit: 1005
Is the pool down?
My dashboard is not showing my workers and the pool hashrate at all!
legendary
Activity: 2688
Merit: 1240
I'm sorry for your bad experience with zpool, however this is not the support thread for zpool.

What kind of 2FA would you like? Google Authenticator?

Yes that would be perfect!

I'm on it, testing it currently, should be available soon.
sr. member
Activity: 322
Merit: 250
I'm sorry for your bad experience with zpool, however this is not the support thread for zpool.

What kind of 2FA would you like? Google Authenticator?

Yes that would be perfect!
legendary
Activity: 2688
Merit: 1240
I'm sorry for your bad experience with zpool, however this is not the support thread for zpool.

What kind of 2FA would you like? Google Authenticator?
sr. member
Activity: 322
Merit: 250
Can you please add 2FA to the site.. Like Google Authenticator?  As it is I'm going to have to give up on Decred at all.. All pools suck or have no true 2FA security! 

Example of Zpool.ca

OK something is seriously wrong here.. The amount I am suppose to be paid goes down after it showed cleared and total unpaid?  WTF?

DsTCsvgwxveiMEYBEBK7pAAojtekY8oE5af   0.81469557 DCR
13jVbA4FwX34KfCm1M6Thr8BQMWsnbzf4L   0.00003246 BTC

This was from this morning!  Note over 1.274211 is total cleared.  Yet my balance was 0.94941553 DCR  and now it's mysteriously gone down even more to 0.81469557 DCR?   Now anyone explain to me how I am losing DCR when I have not even been paid yet?  This really looks wrong to me!

Last 50 Earnings: DsTCsvgwxveiMEYBEBK7pAAojtekY8oE5af
   Name    Amount    Percent    mBTC    Time    Status
   Decred (decred)   0.795311 DCR   4.155%   5.23140   24h ago   Cleared
   Decred (decred)   0.478900 DCR   2.342%   3.15011   24h ago   Cleared

Balance      0.94941553 DCR

But the cleared is higher than balance?


I really would like to mine this coin but I can't trust any of the pools and the ONLY pool I can trust has no 2FA for security!  Crypto Currency has become hackers dream and I never want to lose coins like happened before due to lack of 2FA.. I lost over 40 ethereum coins back in Nov/Dec Sad

legendary
Activity: 2688
Merit: 1240
Hi,
Why the pool efficiency here is only 11.5%? And in coinmine is 98.5%?


You have that sometimes (on all pools) when someone hashes with the wrong algo - he'll be automatically banned in a matter of minutes
legendary
Activity: 1960
Merit: 1005
Hi,
Why the pool efficiency here is only 11.5%? And in coinmine is 98.5%?
sr. member
Activity: 857
Merit: 262
Hmm weird.. I've got an ancient version ..

I'll try it again tonight and let you know.. But maybe it's more simple to just adapt a python proxy to the stratum stuff.. I'll have a look.

Thx man! And as I said before, stratum proxy would be awesome Smiley
legendary
Activity: 2688
Merit: 1240
Hmm weird.. I've got an ancient version ..

I'll try it again tonight and let you know.. But maybe it's more simple to just adapt a python proxy to the stratum stuff.. I'll have a look.
sr. member
Activity: 857
Merit: 262

well... apparently v0.4.5 release can be built with latest eth & dcr dependencies if you fix the util.go like this:

Code:
package util

import (
"math/big"
"math/rand"
"strconv"
"time"

"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/math"
)

var pow256 = math.BigPow(2, 256)

func Random() string {
min := int64(100000000000000)
max := int64(999999999999999)
n := rand.Int63n(max-min+1) + min
return strconv.FormatInt(n, 10)
}

func MakeTimestamp() int64 {
return time.Now().UnixNano() / int64(time.Millisecond)
}

func MakeTargetHex(minerDifficulty float64) string {
minerAdjustedDifficulty := int64(minerDifficulty * 1000000 * 100)
difficulty := big.NewInt(minerAdjustedDifficulty)
diff1 := new(big.Int).Div(pow256, difficulty)
return string(common.ToHex(diff1.Bytes()))
}

func TargetHexToDiff(targetHex string) *big.Int {
targetBytes := common.FromHex(targetHex)
return new(big.Int).Div(pow256, new(big.Int).SetBytes(targetBytes))
}

But it still gives me this shit:


sr. member
Activity: 857
Merit: 262
@ocminer
Is there any proxy that I can use with your pool?

I tried this one https://github.com/bitbandi/decred-proxy ...  it took me some time to figure out the fucked-up dependencies of go-ethereum before I was able to build it just to discover that it doesn't seem to support stratum to the pool and even with getwork it gives me this "Error while refreshing block template on SuprnovaHTTP: unexpected end of JSON input" constantly.

hmm, i'm not sure yet, I'll have to take a look at that decred-proxy from bitbandi there myself.

you want to point all your rigs to the proxy and then to the pool, right ?
Yep.

Hmm actually that proxy works for me.. Though it's hopelessly obsolete as it hasn't got stratum implemented.

Which URL did you use for the proxy ? http://dcr-gw.suprnova.cc:9111 should work fine

yes. this address.

how did you succeed to build this crap? (edit:see my next reply) Last commit was about a year ago...

Also I wonder why isn't there a "universal" stratum mining proxy...? Or at least one that supports the most popular tokens.
That would solve lots of issues for both miners and pools.
legendary
Activity: 2688
Merit: 1240
@ocminer
Is there any proxy that I can use with your pool?

I tried this one https://github.com/bitbandi/decred-proxy ...  it took me some time to figure out the fucked-up dependencies of go-ethereum before I was able to build it just to discover that it doesn't seem to support stratum to the pool and even with getwork it gives me this "Error while refreshing block template on SuprnovaHTTP: unexpected end of JSON input" constantly.

hmm, i'm not sure yet, I'll have to take a look at that decred-proxy from bitbandi there myself.

you want to point all your rigs to the proxy and then to the pool, right ?
Yep.

Hmm actually that proxy works for me.. Though it's hopelessly obsolete as it hasn't got stratum implemented.

Which URL did you use for the proxy ? http://dcr-gw.suprnova.cc:9111 should work fine
sr. member
Activity: 857
Merit: 262
@ocminer
Is there any proxy that I can use with your pool?

I tried this one https://github.com/bitbandi/decred-proxy ...  it took me some time to figure out the fucked-up dependencies of go-ethereum before I was able to build it just to discover that it doesn't seem to support stratum to the pool and even with getwork it gives me this "Error while refreshing block template on SuprnovaHTTP: unexpected end of JSON input" constantly.

hmm, i'm not sure yet, I'll have to take a look at that decred-proxy from bitbandi there myself.

you want to point all your rigs to the proxy and then to the pool, right ?
Yep.
legendary
Activity: 2688
Merit: 1240
@ocminer
Is there any proxy that I can use with your pool?

I tried this one https://github.com/bitbandi/decred-proxy ...  it took me some time to figure out the fucked-up dependencies of go-ethereum before I was able to build it just to discover that it doesn't seem to support stratum to the pool and even with getwork it gives me this "Error while refreshing block template on SuprnovaHTTP: unexpected end of JSON input" constantly.

hmm, i'm not sure yet, I'll have to take a look at that decred-proxy from bitbandi there myself.

you want to point all your rigs to the proxy and then to the pool, right ?
sr. member
Activity: 857
Merit: 262
@ocminer
Is there any proxy that I can use with your pool?

I tried this one https://github.com/bitbandi/decred-proxy ...  it took me some time to figure out the fucked-up dependencies of go-ethereum before I was able to build it just to discover that it doesn't seem to support stratum to the pool and even with getwork it gives me this "Error while refreshing block template on SuprnovaHTTP: unexpected end of JSON input" constantly.
legendary
Activity: 2688
Merit: 1240
unlocked !
member
Activity: 160
Merit: 10
I saw there was a DDOS which targeted the stratum's, fixed now and 50% Bonus for the next 10 blocks.

Hello, pls help unlock my account,  [email protected] , I posted my request by website email, have not received your reply

Thank you.
legendary
Activity: 2688
Merit: 1240
I saw there was a DDOS which targeted the stratum's, fixed now and 50% Bonus for the next 10 blocks.
newbie
Activity: 24
Merit: 1
Same here
Pages:
Jump to: