Bitcoin Forum
May 05, 2024, 06:21:22 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: UPDATED:(Native Tor wallet and messaging will still be functional after update for TX's only.It will be phased out completely over a reasonable period of time in order for network tx fees to be reduced further or dynamically.)Who would choose the current
(A)  External Tor client allowing Segwit,CSV and all other soft forks. - 8 (53.3%)
(B)  Native Tor client causing major delays and possible stalemate to signalling Segwit,CSV and all nescessary soft forks etc. - 2 (13.3%)
(C)  I am unsure and will leave it to the developers. - 5 (33.3%)
Total Voters: 15

Pages: « 1 ... 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 [191] 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 »
  Print  
Author Topic: [XBC] BitcoinPlus Official Thread  (Read 407754 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.
escapecoin
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
April 20, 2018, 08:28:23 PM
 #3801

Hi team

So... closing Q1 it was reported that the developers ran into some obstacles that got them baffled. Can it be shared what they are working on now?

Thanks Smiley
1714933282
Hero Member
*
Offline Offline

Posts: 1714933282

View Profile Personal Message (Offline)

Ignore
1714933282
Reply with quote  #2

1714933282
Report to moderator
If you want to be a moderator, report many posts with accuracy. You will be noticed.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714933282
Hero Member
*
Offline Offline

Posts: 1714933282

View Profile Personal Message (Offline)

Ignore
1714933282
Reply with quote  #2

1714933282
Report to moderator
BitcoinPlusBus (OP)
Legendary
*
Offline Offline

Activity: 1484
Merit: 1032



View Profile WWW
April 21, 2018, 09:41:19 AM
 #3802

Hi team

So... closing Q1 it was reported that the developers ran into some obstacles that got them baffled. Can it be shared what they are working on now?

Thanks Smiley


The code change for 2.6 is as follows in main.cpp in the ProcessMessage function.
-        if (!vRecv.empty())
-            vRecv >> pfrom->strSubVer;
+        if (!vRecv.empty()) {
+            try {
+                vRecv >> pfrom->strSubVer;
+            } catch (std::ios_base::failure& e) {
+                pfrom->strSubVer = "/bitcoinplus:2.7.0/";
+            }
+        }
All it does is it tries to get the version from the remote client and if it fails set it to bitcoinplus:2.7.0. That gets the two versions talking to one another.

We did not find a reason why the two would not talk as the handshake and sending versions seems to be identical between the two, 2.6 sends and receives version to itself and 2.7 can also talk to itself but they will not exchange version between them. Once they are connected then messaging between versions seems to be fine.
The 0.13 client synced all the way up to block 472,460 before it hit an issue, will investigate now.
Actually the client also fails to share its block height properly as part of the handshake.


We have to got to get this working without touching the original client. We think that the issue is going to be serialisation of the messages. That's the next thing to look at as both version and height do not send correctly as part of the version message.

We cannot see why the subversion string in the version message is not readable by other clients, serialisation appears almost identical in XBC as BTC 0.7.
On the 0.13 client, you can run it and sync the majority of blocks.
Checking the peers tab in the debug window is showing no peer versions.
Other clients get a CDataStream error when 0.13 connects.
This problem has been reported rarely for other altcoins. It does not understand smessage messages.

0.13 can talk to 0.13 without the subver issue.
There's an issue syncing the chain on 0.13 but I stopped working on the sync to go back to the subver issue.
I think that other messages may be affected by this issue as well.



The 2.6 client gets the version message, parses it fine until it gets to the subver string then throws an errors. As a result it cannot read the block height that comes after. The substr issue is the issue to look into, could be due to sending serialised string as the numbers before worked.

We now have another developer using his free time going through what has been done in order to diagnose the problem and suggest some workarounds.Its a slow tedious process mainly due to the time constraints of each developer involved.
BitcoinPlusBus (OP)
Legendary
*
Offline Offline

Activity: 1484
Merit: 1032



View Profile WWW
April 21, 2018, 09:42:14 AM
 #3803

2018-04-21 08:49 UTC


Difficulty
POW: 0.01442156
POS: 0.00029501
Coin Supply (XBC)
108690.01491157
566293 blocks
29 connections

Last Price
0.00513806
24hr Change
-4.23%
24hr High
0.00540274
24hr Low
0.00498967
24hr Volume:
1.81541207 BTC / 351.44027224 XBC
buithien181s
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
April 21, 2018, 03:47:41 PM
 #3804

Not sure about a gambling site but the lottery and an online mall sounds interesting and it would help with funding server costs etc if viable.
escapecoin
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
April 21, 2018, 06:06:33 PM
 #3805

Alright... thanks for the tech update. It was thorough.

Nice to have the additional developer.
BitcoinPlusBus (OP)
Legendary
*
Offline Offline

Activity: 1484
Merit: 1032



View Profile WWW
April 22, 2018, 12:16:37 PM
 #3806

Not sure about a gambling site but the lottery and an online mall sounds interesting and it would help with funding server costs etc if viable.

We arent a gambling site,lottery,online mall?Are you on the right thread?
BitcoinPlusBus (OP)
Legendary
*
Offline Offline

Activity: 1484
Merit: 1032



View Profile WWW
April 22, 2018, 12:18:00 PM
 #3807

Alright... thanks for the tech update. It was thorough.

Nice to have the additional developer.


The work will be completed one way or the other.Its just a matter of time.
BitcoinPlusBus (OP)
Legendary
*
Offline Offline

Activity: 1484
Merit: 1032



View Profile WWW
April 22, 2018, 12:18:22 PM
 #3808

2018-04-22 11:06 UTC

Difficulty
POW: 0.01442156
POS: 0.00024414
Coin Supply (XBC)
108747.37381132
567165 blocks
25 connections

Last Price
0.00531999
24hr Change
+5.50%
24hr High
0.00532000
24hr Low
0.00485604
24hr Volume:
1.37853117 BTC / 272.02247897 XBC
cshelswell
Hero Member
*****
Offline Offline

Activity: 615
Merit: 500


View Profile WWW
April 22, 2018, 10:34:13 PM
 #3809

Hi - I'm having a bit of trouble in that I've been away for a few days so turned my computer off. Before then my wallet was all up to date and in sync, now I can't get any connections at all though, despite having left the wallet open for hours with a continuous internet connection.

Not sure why it's decided it doesn't want to connect but any help would be great.

Thanks Smiley

BitcoinPlusBus (OP)
Legendary
*
Offline Offline

Activity: 1484
Merit: 1032



View Profile WWW
April 23, 2018, 06:32:32 AM
 #3810

Hi - I'm having a bit of trouble in that I've been away for a few days so turned my computer off. Before then my wallet was all up to date and in sync, now I can't get any connections at all though, despite having left the wallet open for hours with a continuous internet connection.

Not sure why it's decided it doesn't want to connect but any help would be great.

Thanks Smiley

If you are running it on Tor you could try switching over to standard I2P connection to get it synced.Sometimes the Tor wallet can find it hard to connect to relays due to it using an older Tor bundle.

If that doesn't work maybe backup wallet.dat and keys for any addresses with balances on them.Then slide out your wallet.dat from the data files in (search for  %appdata% ) and let it load with a new wallet.dat and see if it syncs.If it works just slide back in the original one.
BitcoinPlusBus (OP)
Legendary
*
Offline Offline

Activity: 1484
Merit: 1032



View Profile WWW
April 23, 2018, 06:32:50 AM
 #3811

2018-04-23 06:16 UTC

Difficulty
POW: 0.01442156
POS: 0.00029347
Coin Supply (XBC)
108769.03408251
567755 blocks
28 connections

Last Price
0.00614411
24hr Change
+18.88%
24hr High
0.00636055
24hr Low
0.00516818
24hr Volume:
12.03406501 BTC / 2130.85050662 XBC
cshelswell
Hero Member
*****
Offline Offline

Activity: 615
Merit: 500


View Profile WWW
April 23, 2018, 06:06:17 PM
 #3812

Hi - I'm having a bit of trouble in that I've been away for a few days so turned my computer off. Before then my wallet was all up to date and in sync, now I can't get any connections at all though, despite having left the wallet open for hours with a continuous internet connection.

Not sure why it's decided it doesn't want to connect but any help would be great.

Thanks Smiley

If you are running it on Tor you could try switching over to standard I2P connection to get it synced.Sometimes the Tor wallet can find it hard to connect to relays due to it using an older Tor bundle.

If that doesn't work maybe backup wallet.dat and keys for any addresses with balances on them.Then slide out your wallet.dat from the data files in (search for  %appdata% ) and let it load with a new wallet.dat and see if it syncs.If it works just slide back in the original one.

Great got it thanks. Turning Tor off for now has got it syncing up.

Nice one!

cshelswell
Hero Member
*****
Offline Offline

Activity: 615
Merit: 500


View Profile WWW
April 23, 2018, 06:55:43 PM
 #3813

Hi - I'm having a bit of trouble in that I've been away for a few days so turned my computer off. Before then my wallet was all up to date and in sync, now I can't get any connections at all though, despite having left the wallet open for hours with a continuous internet connection.

Not sure why it's decided it doesn't want to connect but any help would be great.

Thanks Smiley

If you are running it on Tor you could try switching over to standard I2P connection to get it synced.Sometimes the Tor wallet can find it hard to connect to relays due to it using an older Tor bundle.

If that doesn't work maybe backup wallet.dat and keys for any addresses with balances on them.Then slide out your wallet.dat from the data files in (search for  %appdata% ) and let it load with a new wallet.dat and see if it syncs.If it works just slide back in the original one.

Great got it thanks. Turning Tor off for now has got it syncing up.

Nice one!

So whilst I did get it synced without Tor, I can't get it to work with Tor anymore.

Is it better to have it running with Tor or will it not affect the usage really?

BitcoinPlusBus (OP)
Legendary
*
Offline Offline

Activity: 1484
Merit: 1032



View Profile WWW
April 23, 2018, 07:35:56 PM
 #3814

Hi - I'm having a bit of trouble in that I've been away for a few days so turned my computer off. Before then my wallet was all up to date and in sync, now I can't get any connections at all though, despite having left the wallet open for hours with a continuous internet connection.

Not sure why it's decided it doesn't want to connect but any help would be great.

Thanks Smiley

If you are running it on Tor you could try switching over to standard I2P connection to get it synced.Sometimes the Tor wallet can find it hard to connect to relays due to it using an older Tor bundle.

If that doesn't work maybe backup wallet.dat and keys for any addresses with balances on them.Then slide out your wallet.dat from the data files in (search for  %appdata% ) and let it load with a new wallet.dat and see if it syncs.If it works just slide back in the original one.

Great got it thanks. Turning Tor off for now has got it syncing up.

Nice one!

So whilst I did get it synced without Tor, I can't get it to work with Tor anymore.

Is it better to have it running with Tor or will it not affect the usage really?

It should still work with Tor.I ran it there and it had almost 30 connections but took ages to get the initial connection.It makes no difference to performance re:staking etc on standard I2P and you should always have at least 4 connections and much quicker to sync.

Tor is only for extra privacy layer but its going to be an external client after the upgrade anyway because we can't get the native client to work on 0.13 version.We will try to resolve that later of course because some community members prefer the client to have native Tor.
cshelswell
Hero Member
*****
Offline Offline

Activity: 615
Merit: 500


View Profile WWW
April 24, 2018, 05:18:50 AM
 #3815

Hi - I'm having a bit of trouble in that I've been away for a few days so turned my computer off. Before then my wallet was all up to date and in sync, now I can't get any connections at all though, despite having left the wallet open for hours with a continuous internet connection.

Not sure why it's decided it doesn't want to connect but any help would be great.

Thanks Smiley

If you are running it on Tor you could try switching over to standard I2P connection to get it synced.Sometimes the Tor wallet can find it hard to connect to relays due to it using an older Tor bundle.

If that doesn't work maybe backup wallet.dat and keys for any addresses with balances on them.Then slide out your wallet.dat from the data files in (search for  %appdata% ) and let it load with a new wallet.dat and see if it syncs.If it works just slide back in the original one.

Great got it thanks. Turning Tor off for now has got it syncing up.

Nice one!

So whilst I did get it synced without Tor, I can't get it to work with Tor anymore.

Is it better to have it running with Tor or will it not affect the usage really?

It should still work with Tor.I ran it there and it had almost 30 connections but took ages to get the initial connection.It makes no difference to performance re:staking etc on standard I2P and you should always have at least 4 connections and much quicker to sync.

Tor is only for extra privacy layer but its going to be an external client after the upgrade anyway because we can't get the native client to work on 0.13 version.We will try to resolve that later of course because some community members prefer the client to have native Tor.


Awesome thanks for the info. I'll leave Tor off for the time being then since it seems to be working fine without it Smiley

BitcoinPlusBus (OP)
Legendary
*
Offline Offline

Activity: 1484
Merit: 1032



View Profile WWW
April 24, 2018, 06:29:27 AM
 #3816

2018-04-24 06:12 UTC

Difficulty
POW: 0.01442156
POS: 0.00028931
Coin Supply (XBC)
108797.22585934
568559 blocks
30 connections

Last Price
0.00677386
24hr Change
+10.25%
24hr High
0.00677386
24hr Low
0.00608148
24hr Volume:
6.89320977 BTC / 1073.68394059 XBC
123jznjx1892889
Newbie
*
Offline Offline

Activity: 66
Merit: 0


View Profile
April 24, 2018, 09:23:09 AM
 #3817

How to get 20% per year, If I plan to hold this coin?
MarketMagic
Hero Member
*****
Offline Offline

Activity: 777
Merit: 777

Altbone inc.Burial service for altcoins


View Profile
April 24, 2018, 10:28:04 AM
 #3818

How to get 20% per year, If I plan to hold this coin?


Keep it in your wallet for 1 year.If it dumps 20-100% though you are making no profit.I think the staking is only to be looked as block reward like in PoW mining because all XBC has not been created yet.Only 1/10th of it has been created so far.

█████████████████████
BitcoinPlusBus (OP)
Legendary
*
Offline Offline

Activity: 1484
Merit: 1032



View Profile WWW
April 24, 2018, 09:30:40 PM
 #3819

How to get 20% per year, If I plan to hold this coin?


Any coins you have on your balance will automatically go into staking after a certain period.
BitcoinPlusBus (OP)
Legendary
*
Offline Offline

Activity: 1484
Merit: 1032



View Profile WWW
April 25, 2018, 08:57:53 AM
 #3820

2018-04-25 08:47 UTC

Difficulty
POW: 0.01442156
POS: 0.00024414
Coin Supply (XBC)
108827.79736208
569416 blocks
29 connections

Last Price
0.00631759
24hr Change
-2.86%
24hr High
0.00680000
24hr Low
0.00608177
24hr Volume:
3.97562468 BTC / 614.02387541 XBC
Pages: « 1 ... 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 [191] 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 »
  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!