Bitcoin Forum
April 20, 2024, 03:48:16 AM *
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
January 13, 2017, 04:54:52 PM
Last edit: January 14, 2017, 10:43:56 AM by HCLivess
 #561

Good job HClivess! Nice wallet!

Can be improved with 2 more buttons, on bottom left: "export" "import" wallet or "backup" - "recover" Cheesy

ok, will add those

Code:
import Tkinter,tkFileDialog

root = Tkinter.Tk()
file = tkFileDialog.askopenfile(parent=root,mode='rb',title='Choose a file')
if file != None:
    data = file.read()
    file.close()
    print "I got %d bytes from this file." % len(data)

1713584896
Hero Member
*
Offline Offline

Posts: 1713584896

View Profile Personal Message (Offline)

Ignore
1713584896
Reply with quote  #2

1713584896
Report to moderator
1713584896
Hero Member
*
Offline Offline

Posts: 1713584896

View Profile Personal Message (Offline)

Ignore
1713584896
Reply with quote  #2

1713584896
Report to moderator
Even if you use Bitcoin through Tor, the way transactions are handled by the network makes anonymity difficult to achieve. Do not expect your transactions to be anonymous unless you really know what you're doing.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
gawlea
Hero Member
*****
Offline Offline

Activity: 756
Merit: 579



View Profile
January 14, 2017, 07:36:41 PM
 #562

Testnet release 1.95

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

Miner code reorganized, will not ask for the password multiple times
error was caused by moving freeze https://docs.python.org/2/library/multiprocessing.html#multiprocessing.freeze_support
topcoiner
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500


First Asia-wide Asset Exchange


View Profile
January 16, 2017, 07:10:10 AM
Last edit: January 16, 2017, 08:29:11 AM by topcoiner
 #563

Testnet release 1.95

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

Miner code reorganized, will not ask for the password multiple times
error was caused by moving freeze https://docs.python.org/2/library/multiprocessing.html#multiprocessing.freeze_support
Updated and testing now! Good job HClivess!

▄▄▄████████▄▄▄
▄▄██████████████████▄▄
▄████████████████████████▄
▄████████████████████████████▄
████████████████████████████████
██████████████▀▀▀▀▀▀██████████████
████████████▀██████████▀████████████
███████████▄▄▄▄▄████▄▄▄▄████████████
██████████████████████████████████████
██████████▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄███████████
██████████████████████████████████████
███████████▄██████▄▄▄▄▄███▄███████████
███████████▄███▀████▀███▄███████████
████████████████████████████████████
██████████████▄▄▄▄▄▄██████████████
████████████████████████████████
▀████████████████████████████▀
▀████████████████████████▀
▀▀██████████████████▀▀
▀▀▀████████▀▀▀
.GenieICO.
███
█▀▄
▄██
█▀▄
▄██
█▀▄
▄██
█▀▄
▄██
█▀▄
▄██
▀▀▀

███
█▀▄
▄██
█▀▄
▄██
█▀▄
▄██
█▀▄
▄██
█▀▄
▄██
▀▀▀
kahir
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000



View Profile
January 16, 2017, 11:02:28 AM
 #564

how can i know my hashrate and the network hashrate ... also controlling the number of cores mining
HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
January 16, 2017, 12:21:19 PM
Last edit: January 16, 2017, 01:18:03 PM by HCLivess
 #565

how can i know my hashrate and the network hashrate ... also controlling the number of cores mining

Hi, you can change the number of threads in config.txt, that should roughly correspond to the number of cores.

I haven't paid much attention to the concept of hashrate so far, haven't found a use for it yet. However, I'll see if I can add it to the miner as an informative measure. We are using the concept of timestamp when creating new blocks, instead of nonce. We we might be resistant to ASIC by design, because nonce is random, but timestamp follows certain rules.

Network hashrate would then be derived from block speed propagation, average timestamps and difficulty.

EDIT: hashrate (rough estimate) code added for the next release:
Code:
2017-01-16 14:14:45,151 miner(100) Mining, 1 cycles passed in thread 1, difficulty: 33.8821780934, combined hashrate: estimating KH/s
2017-01-16 14:14:49,216 miner(100) Mining, 200 cycles passed in thread 1, difficulty: 33.8821780934, combined hashrate: 15.0001049042 KH/s
2017-01-16 14:14:53,160 miner(100) Mining, 400 cycles passed in thread 1, difficulty: 33.8821780934, combined hashrate: 13.0000114441 KH/s
2017-01-16 14:14:57,013 miner(100) Mining, 600 cycles passed in thread 1, difficulty: 33.8821780934, combined hashrate: 16.0000324249 KH/s
2017-01-16 14:15:00,753 miner(100) Mining, 800 cycles passed in thread 1, difficulty: 33.8821780934, combined hashrate: 16.9999599457 KH/s
2017-01-16 14:15:04,480 miner(100) Mining, 1000 cycles passed in thread 1, difficulty: 33.8821780934, combined hashrate: 13.0000114441 KH/s
2017-01-16 14:15:07,951 miner(100) Mining, 1200 cycles passed in thread 1, difficulty: 33.8821780934, combined hashrate: 16.0000324249 KH/s

https://github.com/hclivess/Bismuth/commit/0f5fd15d3f56080899a9328148cd81d060f4cf40

adorid
Sr. Member
****
Offline Offline

Activity: 445
Merit: 250


View Profile
January 16, 2017, 01:01:40 PM
 #566

For test launched node with mining...

kakaxibkl
Newbie
*
Offline Offline

Activity: 53
Merit: 0


View Profile
January 16, 2017, 03:50:37 PM
 #567

How to back up the wallet file, it is stored in what directory
How can I send a coin
HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
January 16, 2017, 04:08:22 PM
Last edit: January 17, 2017, 02:20:40 PM by HCLivess
 #568

How to back up the wallet file, it is stored in what directory
How can I send a coin

privkey.der or privkey_encrypted.der
pubkey.der
in the directory where you installed to, Program Files (x86) by default

to send coins, open node.exe (start) and gui.exe (overview)
i should make changes to naming

HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
January 17, 2017, 12:20:55 AM
 #569

Thanks for awesome testing, so many participants! You gave me great new ideas, more announcements coming soon!


gawlea
Hero Member
*****
Offline Offline

Activity: 756
Merit: 579



View Profile
January 17, 2017, 08:41:09 AM
 #570

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

[Stallion] initial release
Miner hashrate estimate visible.
HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
January 17, 2017, 08:42:19 AM
Last edit: January 17, 2017, 03:51:12 PM by HCLivess
 #571

Bismuth is now re-branded to Stallion - fast, light, strong, free black horse
at the same time, this is internal sync mechanism name, but I like it

Why rebrand:

Nobody knows what Bismuth is / or they think it's a laxative
Bismuth sounds like Helmuth
Stallion appeals to power/growth/dominance/black horse
Stallion has nice graphics materials readily available
Stallion is easy to remember

Odds:

Sounds like Stalin

kakaxibkl
Newbie
*
Offline Offline

Activity: 53
Merit: 0


View Profile
January 17, 2017, 12:08:18 PM
 #572

Mining is not the higher the speed, the more it?
HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
January 17, 2017, 02:16:35 PM
 #573

Mining is not the higher the speed, the more it?

Yes, it should be like that. But since it is not pooled, it highly depends on randomness. Also, full blocks take more time to hash and lower the hashrate estimate.

Smoozle
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
January 17, 2017, 11:32:03 PM
 #574

updated to 1.96 ... node, overview runs.. wallet ok, but miner crashes...  ?
HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
January 18, 2017, 12:17:11 AM
 #575

updated to 1.96 ... node, overview runs.. wallet ok, but miner crashes...  ?

Hi, just released an update: https://github.com/hclivess/Stallion/releases/tag/1.961

Hashrate estimate no longer causes miner crash
Rebranding, some icons still missing

HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
January 18, 2017, 08:13:12 AM
 #576

Hello, due to immensely increased interest, I have noticed some slowness in the network sync. There are now 4 forwarded nodes and multiple non-forwarded clients. I will make observations and possibly make adjustments. Main suspect is the difficulty scaling.

ALATAY2K16
Full Member
***
Offline Offline

Activity: 188
Merit: 105



View Profile WWW
January 19, 2017, 01:19:02 AM
 #577

No windows executable for the latest two version?

https://github.com/hclivess/Stallion/releases/tag/1.962   :-)

maccaspacca
Sr. Member
****
Offline Offline

Activity: 278
Merit: 258


Twitter: @maccaspacca1


View Profile
January 19, 2017, 07:00:23 AM
 #578

I'm running windows 10. I'm getting an error on GUI that the script could not be executed.  Miner and node both flash a screen.

I run win10 too - You need to right click and "Run as administrator"

I believe a plan to fix this is in place.

gawlea
Hero Member
*****
Offline Offline

Activity: 756
Merit: 579



View Profile
January 19, 2017, 07:07:19 AM
 #579

I'm running windows 10. I'm getting an error on GUI that the script could not be executed.  Miner and node both flash a screen.

for now the blockchain have some diff issues, so wull be fixed soon Smiley wait for updates or join slack for more info.
t2yax
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


Arianee:Smart-link Connecting Owners,Assets,Brands


View Profile
January 19, 2017, 07:49:23 AM
 #580

When mainnet released ? im really curious about this.
those features are interesting to me,and i believe this coins value will be high

arianee
• • • ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Smart-link Connecting Owners, Assets And Brands
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ • • •
Discord
Telegram ⊐●⊏ Reddit
Twitter ⊐●⊏ Instagram
Medium ⊐●⊏ Linkedin
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!