Bitcoin Forum
April 19, 2024, 08:30:12 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: Bismuth and Clarity
Create two independent systems - 2 (22.2%)
Dev rewards like Dash and ZCASH, one system - 7 (77.8%)
Total Voters: 9

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 »
  Print  
Author Topic: [TESTNET]Bismuth - New Language, Interpretation Engines, DAPPs  (Read 49699 times)
HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
August 05, 2016, 12:57:33 PM
 #281

Hello,

looking at the result of "netstat" after leaving the node run for several days now, I notice that I have many connections with 94.113.207.67
Looks like a bug in the communication protocol? I would imagine a normal behavior would be to multiplex communications in 1 or 2 TCP streams?


  TCP    10.97.2.9:62086        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62241        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62242        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62244        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62256        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62259        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62262        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62263        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62265        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62267        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62268        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62274        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62278        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62292        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62293        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62294        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62295        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62296        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62350        58.173.246.16:8333     ESTABLISHED     4616
  TCP    10.97.2.9:62363        162.243.250.176:2829   ESTABLISHED     4988
  TCP    10.97.2.9:62434        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62437        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62438        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62440        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62445        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62457        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62463        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62466        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62475        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62479        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62500        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62548        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62550        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62551        94.113.207.67:2829     ESTABLISHED     4988
  TCP    10.97.2.9:62564        94.113.207.67:2829     ESTABLISHED     4988

Hi, more like a design flaw, thanks for pointing out. To be honest, this is my first network application. I am using a python TCP server module for active nodes and simple sockets for clients.

Code:
                if threads_count <= threads_limit and str(HOST + ":" + str(PORT)) not in tried and str(
                                        HOST + ":" + str(PORT)) not in active_pool and str(HOST) not in banlist:

I thought this piece of code was handling it, but it is not so reliable (also conenctions get stuck in consensus pool)

 I will look into this after finishing work on putting block operations into functions and switching the transaction engine from restrictive to omissive - done today. It will bring some overhead, but performance and reliability will be boosted.

1713558612
Hero Member
*
Offline Offline

Posts: 1713558612

View Profile Personal Message (Offline)

Ignore
1713558612
Reply with quote  #2

1713558612
Report to moderator
There are several different types of Bitcoin clients. The most secure are full nodes like Bitcoin Core, but full nodes are more resource-heavy, and they must do a lengthy initial syncing process. As a result, lightweight clients with somewhat less security are commonly used.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
August 05, 2016, 01:03:16 PM
 #282

HCLivess can the algorithm be more memory hungry to get rid of botnets .... like it uses at least 4 GB or more

Hi, I haven't thought about that yet. How much does the mining algorithm take for you?
It seems to take 1 core of my laptop, once a GPU miner is developed (I have no idea how to do that), GPU should be just as demanding as CPU currently (limited by the actual hashrate).

HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
August 07, 2016, 11:26:31 AM
 #283

Quote
transaction handling reworked from permissive to omissive
message signing now fully implemented
unified and reduced redundant code parts

https://github.com/hclivess/Bismuth/releases/tag/0.9

HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
August 07, 2016, 08:52:35 PM
 #284

I created a new poll

Quote
Should Bismuth have proof of stake? (rewards for coin holders)

https://github.com/hclivess/Bismuth/issues/20

adorid
Sr. Member
****
Offline Offline

Activity: 445
Merit: 250


View Profile
August 08, 2016, 06:34:51 AM
 #285

still problem with block height? because sometimes when manualy refresh blocks, numbers going up and down, maybe its just gui bag, no idea))

HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
August 08, 2016, 07:35:16 AM
Last edit: August 08, 2016, 07:58:54 AM by HCLivess
 #286

still problem with block height? because sometimes when manualy refresh blocks, numbers going up and down, maybe its just gui bag, no idea))

Next version will have a proper rollback mechanism, current one is quite wild. However, there will still be some rollbacks, I will work on optimizations though. Are you testing version 0.9? Upgrades in 0.9 have major impact on transaction collisions appearing in previous versions.

HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
August 08, 2016, 07:50:32 AM
 #287

Quote
What is Clarity?
Clarity is a super stable version of Bismuth, which will be released separately. Clarity to Bismuth is what RedHat is to Fedora. New features will be tested in Bismuth first, and then added to Clarity later. This way, Bismuth will be secured by two networks (tesnet+mainnet) and Clarity will be secured by three (Bismuth testnet+Bismuth mainnet+Clarity mainnet). Clarity will be funded by ICO, and the funds will pour into Bismuth. Using this model, the Bismuth blockchain will not be clouded by funding and people will still have an opportunity to invest to get an instant share in Clarity.

110110101
Legendary
*
Offline Offline

Activity: 1382
Merit: 1002



View Profile
August 08, 2016, 08:23:28 AM
 #288

start node.py
then gui.py
and at last miner.py

Hey HCLivess,
I hope to find some time to test Bismuth, it's looking more interesting every update that is made.
I was hoping to run the test client on a gui less Linux server. Could I perhaps run a node on a server and use a gui wallet on OSX to connect to said server node? Or would it be more feasible to simply run the client in a non-gui mode and try to use command line for testing, sending, receiving etc? Is the gui needed for some functionality or simply being much more user friendly?
adorid
Sr. Member
****
Offline Offline

Activity: 445
Merit: 250


View Profile
August 08, 2016, 08:26:12 AM
 #289

still problem with block height? because sometimes when manualy refresh blocks, numbers going up and down, maybe its just gui bag, no idea))

Next version will have a proper rollback mechanism, current one is quite wild. However, there will still be some rollbacks, I will work on optimizations though. Are you testing version 0.9? Upgrades in 0.9 have major impact on transaction collisions appearing in previous versions.

jap, tested on 0.9. And when i launch node then there shows some invalid transactions and only then starting download blocks.

sry if im repeating and you know already problem, then just ignore me Cheesy I as a tester report about everything that looks strange ))

kahir
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000



View Profile
August 08, 2016, 08:51:40 AM
Last edit: August 08, 2016, 10:32:17 AM by kahir
 #290

HCLivess can the algorithm be more memory hungry to get rid of botnets .... like it uses at least 4 GB or more

Hi, I haven't thought about that yet. How much does the mining algorithm take for you?
It seems to take 1 core of my laptop, once a GPU miner is developed (I have no idea how to do that), GPU should be just as demanding as CPU currently (limited by the actual hashrate).


i did not mange to try the testnet ... what would be the distribution model for first phase i wish it could be the 1 core cpu and limited mining per IP like early day on vanilla coin aka Vcash now the distribution was really fair at first and everyone hold their vanilla really dear .. would we see something similiar on bismuth at first ?  
ALATAY2K16
Full Member
***
Offline Offline

Activity: 188
Merit: 105



View Profile WWW
August 08, 2016, 09:32:15 AM
 #291

hello can people still participate in the testnet ?

rajeshgarnaik
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
August 08, 2016, 10:46:34 AM
 #292

how can i join

HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
August 08, 2016, 11:00:24 AM
 #293

Hello guys, if you want to join, just download the latest client from https://github.com/hclivess/Bismuth/releases
And try mining some. I can also send you some test coins.
Make sure to "Run as administrator" in case you run into any problems
Also download framework from page 1 of this thread (red fat letters)

I see someone else is also running the spammer now, so we have a little variation in timestamp progression, which is interesting

HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
August 08, 2016, 11:02:32 AM
 #294

HCLivess can the algorithm be more memory hungry to get rid of botnets .... like it uses at least 4 GB or more

Hi, I haven't thought about that yet. How much does the mining algorithm take for you?
It seems to take 1 core of my laptop, once a GPU miner is developed (I have no idea how to do that), GPU should be just as demanding as CPU currently (limited by the actual hashrate).


i did not mange to try the testnet ... what would be the distribution model for first phase i wish it could be the 1 core cpu and limited mining per IP like early day on vanilla coin aka Vcash now the distribution was really fair at first and everyone hold their vanilla really dear .. would we see something similiar on bismuth at first ?  

Wow, I had no clue vanillacoin had something like this, thanks. In fact, mining is now single core CPU (unless you run it multiple times and re-assign affinity), although there are no limits on IPs. It would require an entirely new backend. So far, the mining is relatively fair on the testnet. 94.113.207.67:5492

ALATAY2K16
Full Member
***
Offline Offline

Activity: 188
Merit: 105



View Profile WWW
August 08, 2016, 11:18:16 AM
Last edit: August 08, 2016, 04:49:42 PM by ALATAY2K16
 #295

Hello guys, if you want to join, just download the latest client from https://github.com/hclivess/Bismuth/releases
And try mining some. I can also send you some test coins.
Make sure to "Run as administrator" in case you run into any problems
Also download framework from page 1 of this thread (red fat letters)

I see someone else is also running the spammer now, so we have a little variation in timestamp progression, which is interesting


hello :-) I've downloaded the client and its syncing the blockchain just now :-)  so just waiting to see if it mines ok after that :-) but so far been straight forward to do and no problems. my address for some test coins is 451acb4e88e515c407cb8c3bcea9b95a746389ef64cfacea2b083403 :-)

casper77
Legendary
*
Offline Offline

Activity: 2884
Merit: 1035


View Profile
August 08, 2016, 11:19:46 AM
 #296

Hello guys, if you want to join, just download the latest client from https://github.com/hclivess/Bismuth/releases
And try mining some. I can also send you some test coins.
send me too please
i registered in googleform under casper77 but still not received testcoins
HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
August 08, 2016, 06:28:31 PM
 #297

I am an anarchist. My age is 32. I want a new society. I cannot be stopped. I will not be stopped. I won't stop until I destroy all corporations and set everyone  free

ALATAY2K16
Full Member
***
Offline Offline

Activity: 188
Merit: 105



View Profile WWW
August 08, 2016, 07:40:53 PM
 #298

is anyone else jumping between block 11503 - 11505 then back to 11503 Huh?

frobley
Hero Member
*****
Offline Offline

Activity: 708
Merit: 500


View Profile
August 08, 2016, 07:56:25 PM
 #299

is anyone else jumping between block 11503 - 11505 then back to 11503 Huh?

mine was going from 11506-11508 just now
and then resolved to 11507
ALATAY2K16
Full Member
***
Offline Offline

Activity: 188
Merit: 105



View Profile WWW
August 08, 2016, 07:59:57 PM
 #300

is anyone else jumping between block 11503 - 11505 then back to 11503 Huh?

mine was going from 11506-11508 just now
and then resolved to 11507

yeah mines just done the same, at least I know its not just me then :-)

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 »
  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!