Pages:
Author

Topic: Bitcoin3 - page 10. (Read 6629 times)

newbie
Activity: 83
Merit: 0
March 21, 2021, 06:41:37 PM
We dug block 1821, but why is there no reward? Eight blocks in the pool have no reward?

http://121.196.121.176/stats

Thanks.

BTC3 blockchain is moving.
./bitcoin3-cli getmininginfo
{
  "blocks": 1841,
  "currentblockweight": 30316,
  "currentblocktx": 19,
  "difficulty": 73317394.16732851,
  "networkhashps": 17671907032053.93,
  "pooledtx": 19,
  "chain": "main",
  "warnings": ""
}


I'm not sure who owns that mining pool. He/she will reply here soon I guess.
I was on there but quit, just wasting power with my S9, did find 7 unpaid blocks
newbie
Activity: 51
Merit: 0
March 21, 2021, 03:33:45 PM
We dug block 1821, but why is there no reward? Eight blocks in the pool have no reward?

http://121.196.121.176/stats

Thanks.

BTC3 blockchain is moving.
./bitcoin3-cli getmininginfo
{
  "blocks": 1841,
  "currentblockweight": 30316,
  "currentblocktx": 19,
  "difficulty": 73317394.16732851,
  "networkhashps": 17671907032053.93,
  "pooledtx": 19,
  "chain": "main",
  "warnings": ""
}


I'm not sure who owns that mining pool. He/she will reply here soon I guess.
newbie
Activity: 83
Merit: 0
March 21, 2021, 03:30:24 PM
wallet stuck again at block 1841 2 hour behind
newbie
Activity: 83
Merit: 0
March 21, 2021, 01:28:47 PM
Hello, I found 5 asics from a long time ago.

How do I use them? What mining software do I use and what is the command I run.

Thanks

That sounds you are lucky :-)
I wish I have one.

You need to run bitcoin3d or bitcoin3-qt on your PC and use mining software like sgminer, cgminer or ccminer for solo mining.
Or pool mining once BTC3 mining pool is available.

There seems already asic mining happening in last 12 hours. Maybe someone else can give more info how they are doing?


They are Silicon Labs CP210x ASICS. I don't think cgminer supports them.

Anyone know what miner software I should use, and if you do, what is the command I run to get these things to work. I don't want to join a pool at this point, just want to solo mine. Thanks
link to need to know about the usb miner and software for it https://bitcointalksearch.org/topic/gekkoscience-newpac-terminus-r606-bm1387-official-support-thread-5053833
newbie
Activity: 83
Merit: 0
March 21, 2021, 01:08:34 PM
At the beginning, the idea was great to hold back the source code for a week so that the little miners can also earn something. But now my suspicion is getting closer and closer that the dev simply has no idea what he is doing. The blockchain has hung up and there is no way to mine anything. The last confirmed block was over 36 hours ago. Even the airdrop from 2 days ago over 0.001 BTC3 are not confirmed.

Let's take a look at the pool (http://121.196.121.176/stats), it has minted the last 20 blocks and nothing was confirmed there either. Why this secrecy about the source code Huh Publish and integrate pools, but no... Nothing works anymore. You will see BTC3 is dead


yes pending since the 14th and I got 7 from today pending still when the pool started working but not right, going to take miner off until fixed
newbie
Activity: 7
Merit: 0
March 21, 2021, 12:40:19 PM
At the beginning, the idea was great to hold back the source code for a week so that the little miners can also earn something. But now my suspicion is getting closer and closer that the dev simply has no idea what he is doing. The blockchain has hung up and there is no way to mine anything. The last confirmed block was over 36 hours ago. Even the airdrop from 2 days ago over 0.001 BTC3 are not confirmed.

Let's take a look at the pool (http://121.196.121.176/stats), it has minted the last 20 blocks and nothing was confirmed there either. Why this secrecy about the source code Huh Publish and integrate pools, but no... Nothing works anymore. You will see BTC3 is dead

newbie
Activity: 78
Merit: 0
March 21, 2021, 11:39:04 AM
I'm interested to sell 100-250 BTC3,
Will accept ETH, ESP, BTC.
Make an offer PM.
no exchange yet .....
I can buy for a couple of cents .....50 dogecoin = 250 btc3 Grin Grin Grin Grin
newbie
Activity: 14
Merit: 0
March 21, 2021, 11:20:41 AM
I'm interested to sell 100-250 BTC3,
Will accept ETH, ESP, BTC.
Make an offer PM.
newbie
Activity: 78
Merit: 0
March 21, 2021, 10:49:44 AM
The difficulty has grown very much, now it's easier to wait for an exchange and buy coins as soon as they start to drain it than to mine on a PC
newbie
Activity: 11
Merit: 0
March 21, 2021, 10:22:40 AM
Hello, I found 5 asics from a long time ago.

How do I use them? What mining software do I use and what is the command I run.

Thanks

That sounds you are lucky :-)
I wish I have one.

You need to run bitcoin3d or bitcoin3-qt on your PC and use mining software like sgminer, cgminer or ccminer for solo mining.
Or pool mining once BTC3 mining pool is available.

There seems already asic mining happening in last 12 hours. Maybe someone else can give more info how they are doing?


They are Silicon Labs CP210x ASICS. I don't think cgminer supports them.

Anyone know what miner software I should use, and if you do, what is the command I run to get these things to work. I don't want to join a pool at this point, just want to solo mine. Thanks
newbie
Activity: 14
Merit: 0
March 21, 2021, 09:34:07 AM
Hi BTC3 Team,

As the BTC3 blockchain is stuck for more than 18 hours, and we have no pool so far, something has to be done.
To survive similar situation in future as well as to fix the current issue, I'm proposing to add new logic to the BTC3 core to recover from bad stale (attack) situation.

Please have a look the following code change and if similar code can be added to BTC3 core, we can at least go through now.
Note I put a logic that every 50 minutes ("10" times of the target space) halves the difficulty. And sure to make it's not less than the minimum target.
I've tested with two nodes and working correctly.

Anyone feel free to comment as well.

Code:
   stale_target:

diff --git a/src/pow.cpp b/src/pow.cpp
index 45237b2..e444c2a 100644
--- a/src/pow.cpp
+++ b/src/pow.cpp
@@ -35,6 +35,10 @@ unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHead
                 return pindex->nBits;
             }
         }
+        else if ((pindexLast->nHeight + 1) >= 1821 && pblock->GetBlockTime() > pindexLast->GetBlockTime() + params.nPowTargetSpacing*10)
+        {
+            return CalculateNextWorkRequiredStale(pindexLast, (pblock->GetBlockTime() - pindexLast->GetBlockTime()) / params.nPowTargetSpacing*10, params);
+        }
         return pindexLast->nBits;
     }
 
@@ -72,6 +76,29 @@ unsigned int CalculateNextWorkRequired(const CBlockIndex* pindexLast, int64_t nF
     return bnNew.GetCompact();
 }
 
+unsigned int CalculateNextWorkRequiredStale(const CBlockIndex* pindexLast, int shift, const Consensus::Params& params)
+{
+    if (params.fPowNoRetargeting)
+        return pindexLast->nBits;
+
+    // Retarget
+    const arith_uint256 bnPowLimit = UintToArith256(params.powLimit);
+    arith_uint256 bnNew;
+    bnNew.SetCompact(pindexLast->nBits);
+
+    for (int i=0; i+    {
+        bnNew *= 2;
+        if (bnNew > bnPowLimit)
+        {
+            bnNew = bnPowLimit;
+            break;
+        }
+    }
+
+    return bnNew.GetCompact();
+}
+
 bool CheckProofOfWork(uint256 hash, unsigned int nBits, const Consensus::Params& params)
 {
     bool fNegative;


This could be great modification since if someone has lot of hashing power they can stall the blockchain, as i believe that has happened. They just mine the difficulty to skyrocket and leave. If no action will be taken the blockchain can be stopped.
newbie
Activity: 38
Merit: 0
March 21, 2021, 07:03:00 AM
We dug block 1821, but why is there no reward? Eight blocks in the pool have no reward?

http://121.196.121.176/stats
newbie
Activity: 83
Merit: 0
March 21, 2021, 03:00:12 AM
Why is my wallet not syncing after block 1820?
same with mine just stuck on syncing headers and quite a few hours behind
newbie
Activity: 78
Merit: 0
March 21, 2021, 02:52:41 AM
Why is my wallet not syncing after block 1820?
newbie
Activity: 18
Merit: 0
March 21, 2021, 01:00:58 AM
35owg54eLyBsjwNimjq1CUYa7NituGjMdH
Please give it to airdrop, thank you
newbie
Activity: 51
Merit: 0
March 20, 2021, 10:59:16 PM
newbie
Activity: 83
Merit: 0
March 20, 2021, 10:55:43 PM
Beware of hackers blasting your machine


I don't have any coins there so just opening RPC port for BTC3 will be ok.
Thanks for the comment.

Anyway once the BTC3 comes back to normal, I will close and change the password. I wouldn't do this if I had an ASIC miner.
close it ill wait for the pool for my gekko or asic which might be to much for btc3 @ 14 t

Got it.

And could you edit your message in this board quoting my server info and blank them just to be sure not to be used by bad guys. Thanks
already deleted
newbie
Activity: 51
Merit: 0
March 20, 2021, 10:47:53 PM
Beware of hackers blasting your machine


I don't have any coins there so just opening RPC port for BTC3 will be ok.
Thanks for the comment.

Anyway once the BTC3 comes back to normal, I will close and change the password. I wouldn't do this if I had an ASIC miner.
close it ill wait for the pool for my gekko or asic which might be to much for btc3 @ 14 t

Got it.

And could you edit your message in this board quoting my server info and blank them just to be sure not to be used by bad guys. Thanks
newbie
Activity: 83
Merit: 0
March 20, 2021, 10:43:32 PM
Beware of hackers blasting your machine


I don't have any coins there so just opening RPC port for BTC3 will be ok.
Thanks for the comment.

Anyway once the BTC3 comes back to normal, I will close and change the password. I wouldn't do this if I had an ASIC miner.
close it ill wait for the pool for my gekko or asic which might be to much for btc3 @ 14 t
newbie
Activity: 51
Merit: 0
March 20, 2021, 10:41:17 PM
Current network is way high so I'm not sure just USB miner can find a block soon or not. We may need a mining pool sooner.

  NetworkHash=15.586 TH/s

./bitcoin3-cli getmininginfo
{
  "blocks": 1820,
  "currentblockweight": 31064,
  "currentblocktx": 20,
  "difficulty": 67379265.26289986,
  "networkhashps": 15586200470495.35,
  "pooledtx": 20,
  "chain": "main",
  "warnings": ""
}
Pages:
Jump to: