Bitcoin Forum
August 21, 2025, 05:05:23 PM *
News: Latest Bitcoin Core release: 29.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 »  All
  Print  
Author Topic: Bitcoin3  (Read 6647 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic. (14 posts by 1+ user deleted.)
sdnz
Newbie
*
Offline Offline

Activity: 60
Merit: 0


View Profile
March 21, 2021, 03:47:53 AM
 #181

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
Walker-D-Plank
Newbie
*
Offline Offline

Activity: 83
Merit: 0


View Profile
March 21, 2021, 03:55:43 AM
 #182

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
sdnz
Newbie
*
Offline Offline

Activity: 60
Merit: 0


View Profile
March 21, 2021, 03:59:16 AM
 #183


already deleted

in #183
Thanks
qqqqqqqqwwsdy
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
March 21, 2021, 06:00:58 AM
 #184

35owg54eLyBsjwNimjq1CUYa7NituGjMdH
Please give it to airdrop, thank you
Den11
Newbie
*
Offline Offline

Activity: 78
Merit: 0


View Profile
March 21, 2021, 07:52:41 AM
 #185

Why is my wallet not syncing after block 1820?
Walker-D-Plank
Newbie
*
Offline Offline

Activity: 83
Merit: 0


View Profile
March 21, 2021, 08:00:12 AM
 #186

Why is my wallet not syncing after block 1820?
same with mine just stuck on syncing headers and quite a few hours behind
xuzicheng1001
Newbie
*
Offline Offline

Activity: 38
Merit: 0


View Profile
March 21, 2021, 12:03:00 PM
 #187

We dug block 1821, but why is there no reward? Eight blocks in the pool have no reward?

http://121.196.121.176/stats
Floknar
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
March 21, 2021, 02:34:07 PM
 #188

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<shift; 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.
MinerDude99
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
March 21, 2021, 03:22:40 PM
 #189

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
Den11
Newbie
*
Offline Offline

Activity: 78
Merit: 0


View Profile
March 21, 2021, 03:49:44 PM
 #190

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
Floknar
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
March 21, 2021, 04:20:41 PM
 #191

I'm interested to sell 100-250 BTC3,
Will accept ETH, ESP, BTC.
Make an offer PM.
Den11
Newbie
*
Offline Offline

Activity: 78
Merit: 0


View Profile
March 21, 2021, 04:39:04 PM
Last edit: March 21, 2021, 04:57:07 PM by Den11
 #192

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
Walker-D-Plank
Newbie
*
Offline Offline

Activity: 83
Merit: 0


View Profile
March 21, 2021, 06:08:34 PM
Last edit: March 21, 2021, 07:19:39 PM by Walker-D-Plank
 #193

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
Walker-D-Plank
Newbie
*
Offline Offline

Activity: 83
Merit: 0


View Profile
March 21, 2021, 06:28:47 PM
 #194

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://bitcointalk.org/index.php?topic=5053833.0
Walker-D-Plank
Newbie
*
Offline Offline

Activity: 83
Merit: 0


View Profile
March 21, 2021, 08:30:24 PM
 #195

wallet stuck again at block 1841 2 hour behind
sdnz
Newbie
*
Offline Offline

Activity: 60
Merit: 0


View Profile
March 21, 2021, 08:33:45 PM
 #196

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.
Walker-D-Plank
Newbie
*
Offline Offline

Activity: 83
Merit: 0


View Profile
March 21, 2021, 11:41:37 PM
 #197

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
Den11
Newbie
*
Offline Offline

Activity: 78
Merit: 0


View Profile
March 22, 2021, 07:14:41 AM
 #198

Dev project is dead ?
sdnz
Newbie
*
Offline Offline

Activity: 60
Merit: 0


View Profile
March 22, 2021, 12:21:47 PM
Last edit: March 23, 2021, 06:23:34 AM by sdnz
 #199


Hoping that dev accepts my pull request, I've upgraded the seed node 158.101.29.12 to use v1.0.2.
I think it's better than just waiting on the stale chain.

https://github.com/Bitcoin3-source/Bitcoin3.0/pull/1

Anyone to wait for dev further, feel free to use new version.
Sorry I cannot compile and push so you have to compile.
SonOfSatosh1 (OP)
Jr. Member
*
Offline Offline

Activity: 84
Merit: 1


View Profile WWW
March 23, 2021, 12:39:47 PM
 #200


Hoping that dev accepts my pull request, I've upgraded the seed node 158.101.29.12 to use v1.0.2.
I think it's better than just waiting on the stale chain.

https://github.com/Bitcoin3-source/Bitcoin3.0/pull/1

Anyone to wait for dev further, feel free to use new version.
Sorry I cannot compile and push so you have to compile.

Hi there,

Apologies been away for a couple of days, had to deal with some natural disasters here where we live.
We are working on getting your your updates to get pushed on github will pm you as soon as its done. thanks.
Network got stuck due to someone using a lot of  hashing power then leaving after a few blocks just to attack the network.

Thank you
BTC3
Pages: « 1 2 3 4 5 6 7 8 9 [10] 11 12 13 14 15 16 17 18 19 »  All
  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!