Bitcoin Forum
April 24, 2024, 02:00:56 PM *
News: Latest Bitcoin Core release: 27.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
July 14, 2016, 05:40:12 AM
 #181

Is there a user friendly documentation on how to mine on testnet in windows?

yes, run node.exe and miner.exe

1713967256
Hero Member
*
Offline Offline

Posts: 1713967256

View Profile Personal Message (Offline)

Ignore
1713967256
Reply with quote  #2

1713967256
Report to moderator
In order to get the maximum amount of activity points possible, you just need to post once per day on average. Skipping days is OK as long as you maintain the average.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713967256
Hero Member
*
Offline Offline

Posts: 1713967256

View Profile Personal Message (Offline)

Ignore
1713967256
Reply with quote  #2

1713967256
Report to moderator
1713967256
Hero Member
*
Offline Offline

Posts: 1713967256

View Profile Personal Message (Offline)

Ignore
1713967256
Reply with quote  #2

1713967256
Report to moderator
1713967256
Hero Member
*
Offline Offline

Posts: 1713967256

View Profile Personal Message (Offline)

Ignore
1713967256
Reply with quote  #2

1713967256
Report to moderator
HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
July 14, 2016, 05:40:47 AM
 #182

experimental hotfix (new release)

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

Bangc
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
July 14, 2016, 09:01:56 AM
 #183

Looks like signature verification was weak in several places, will release a hotfix soon


Any RSA-keys are all allowed a "transaction"

["transaction" : timestamp + ":" + yourAddress + ":" + myAddress + ":" + getAmount + ";" + signature_enc(MY RSA Key) + ";" + MY PublicKey]



The address verification is required
[address == hashlib.sha224(public_key_readable).hexdigest()]
Qbanow
Member
**
Offline Offline

Activity: 102
Merit: 10


View Profile
July 15, 2016, 02:08:18 AM
Last edit: July 15, 2016, 10:05:06 AM by Qbanow
 #184

Hi HCLivess,
I sent a new wallet address by https://docs.google.com/forms/d/1-zNSIyQ3lKoN5IlraQKZ7tEfhk6HduSVwuyLev0gOLk because when I updated to the new version(0.831) lost my old one. How can I save my actual wallet address when a new version is launched?
Thanks in advance.
Bangc
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
July 15, 2016, 05:26:03 AM
 #185

Code:
if db_address[0:diff] == txhash[0:diff]:  # simplified comparison, no backwards mining
  if float(time_now) > float(db_timestamp):
    reward = 25
    app_log.info("Mempool: Heureka, reward mined: " + str(reward))
  else:
    app_log.info("Mempool: Future mining not allowed")


 If the node is a different time, the time comparison is not meaningful
HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
July 15, 2016, 11:30:09 AM
 #186

Code:
if db_address[0:diff] == txhash[0:diff]:  # simplified comparison, no backwards mining
  if float(time_now) > float(db_timestamp):
    reward = 25
    app_log.info("Mempool: Heureka, reward mined: " + str(reward))
  else:
    app_log.info("Mempool: Future mining not allowed")


 If the node is a different time, the time comparison is not meaningful


thanks, unix time should be universal, has anyone had issues yet?
nodes are supposed to have internet-synched time, so all should fit in

HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
July 15, 2016, 11:31:23 AM
Last edit: July 15, 2016, 01:08:58 PM by HCLivess
 #187

Hi HCLivess,
I sent a new wallet address by https://docs.google.com/forms/d/1-zNSIyQ3lKoN5IlraQKZ7tEfhk6HduSVwuyLev0gOLk because when I updated to the new version(0.831) lost my old one. How can I save my actual wallet address when a new version is launched?
Thanks in advance.

Interesting, your wallet should not be lost if you run the application as administrator, which should happen automatically, but it looks like it doesnt for some. Windows 7?

Try installing somewhere else than Program Files
"C:\bismuth" for example

HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
July 15, 2016, 11:34:39 AM
Last edit: July 15, 2016, 01:06:44 PM by HCLivess
 #188

Looks like signature verification was weak in several places, will release a hotfix soon


Any RSA-keys are all allowed a "transaction"

["transaction" : timestamp + ":" + yourAddress + ":" + myAddress + ":" + getAmount + ";" + signature_enc(MY RSA Key) + ";" + MY PublicKey]



The address verification is required
[address == hashlib.sha224(public_key_readable).hexdigest()]

Thanks for noticing, yes you can send coins from any address to which you have a matching private key, I recon it has to be sha224 due to the deciphering algorithm. Also, after adding float conversion everywhere, it looks like the node is now validating also the first two transactions in the ledger (which dont have proper signature), so the node should no longer accept any problematic signatures, because all the handling is supposed to be equal in all places

testnet coins sent to several latest addresses

also, consensus pool is now broken - will push fix soon, release tomorrow morning or tonight
I think I finally got it right... Anyway looks like the sync process will be faster

HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
July 15, 2016, 01:41:13 PM
 #189

Looks like there are no issues with mining thus far

HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
July 15, 2016, 03:47:02 PM
 #190

New Release: https://github.com/hclivess/Bismuth/releases/tag/0.84

Qbanow
Member
**
Offline Offline

Activity: 102
Merit: 10


View Profile
July 15, 2016, 08:05:24 PM
 #191

Hi HCLivess, new version(0.84) installed everything worked good  ATM node synchronized very fast and my wallet didn't change:       f246e1b8d75e16e9451d6d8f22e63196c41ed26af7abd4f87fb3f44c . Yes I have windows 7 but I don't know why my wallet was overwritten in the prior version.
OK waiting for some test coins to try mining tool. Thanks.
HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
July 18, 2016, 08:10:02 AM
 #192

Hi HCLivess, new version(0.84) installed everything worked good  ATM node synchronized very fast and my wallet didn't change:       f246e1b8d75e16e9451d6d8f22e63196c41ed26af7abd4f87fb3f44c . Yes I have windows 7 but I don't know why my wallet was overwritten in the prior version.
OK waiting for some test coins to try mining tool. Thanks.

Hi, did you receive the coins? (10000)

frobley
Hero Member
*****
Offline Offline

Activity: 708
Merit: 500


View Profile
July 18, 2016, 09:07:15 AM
 #193

No success mining so far, everything checks out though...
raetsch
Legendary
*
Offline Offline

Activity: 957
Merit: 1006



View Profile
July 18, 2016, 09:31:46 AM
 #194

anybody got this working on unix(ubuntu)?
i installed all mentioned dependencies and got the following executing gui.py
Code:
  File "gui.py", line 36, in <module>
    root.wm_iconbitmap(tempFile)
  File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1646, in wm_iconbitmap
    return self.tk.call('wm', 'iconbitmap', self._w, bitmap)
_tkinter.TclError: bitmap "icon.ico" not defined
Qbanow
Member
**
Offline Offline

Activity: 102
Merit: 10


View Profile
July 19, 2016, 09:19:16 PM
 #195

Hi HCLivess, new version(0.84) installed everything worked good  ATM node synchronized very fast and my wallet didn't change:       f246e1b8d75e16e9451d6d8f22e63196c41ed26af7abd4f87fb3f44c . Yes I have windows 7 but I don't know why my wallet was overwritten in the prior version.
OK waiting for some test coins to try mining tool. Thanks.

Hi, did you receive the coins? (10000)

Hi, yes I received the coins thanks. I have been trying to mine but every time that I find a block the miner and the node stay stuck in that block to solve the problem I have to restart node and miner, they get synchronize OK but the block that was found disappear and the balance get back to 10000(coins that you sent me).
MrWhiteBites
Hero Member
*****
Offline Offline

Activity: 770
Merit: 511


Im the One who Knocks.


View Profile
July 20, 2016, 08:31:04 AM
 #196

Someone please let me know when i can buy this on an exchange.
I'm not a miner and not putting anything on this laptop.

Cheers.

If you don't know who I am, then maybe your best course would be to tread lightly
HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
July 20, 2016, 09:01:03 AM
 #197

Someone please let me know when i can buy this on an exchange.
I'm not a miner and not putting anything on this laptop.

Cheers.

Hello, this is only a testnet version. No exchanges yet.

HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
July 20, 2016, 09:08:59 AM
 #198

anybody got this working on unix(ubuntu)?
i installed all mentioned dependencies and got the following executing gui.py
Code:
  File "gui.py", line 36, in <module>
    root.wm_iconbitmap(tempFile)
  File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1646, in wm_iconbitmap
    return self.tk.call('wm', 'iconbitmap', self._w, bitmap)
_tkinter.TclError: bitmap "icon.ico" not defined


Thank you for reporting this error, looks like the icon handling is incompatible with Linux-based system.
I updated https://github.com/hclivess/Bismuth/blob/master/gui.py with a workaround

Code:
import os
import os.name

if "posix" not in os.name:
    #icon

So the icon should no longer bother you in Ubuntu, please test and let me know if it works

HCLivess (OP)
Legendary
*
Offline Offline

Activity: 2114
Merit: 1090


=== NODE IS OK! ==


View Profile WWW
July 20, 2016, 09:10:19 AM
 #199

No success mining so far, everything checks out though...

Hi, you need some basic balance so you can pay for the mining transaction, do you have some or should I send?

alicex
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250


View Profile
July 21, 2016, 11:55:17 AM
 #200

it seem can not mining with no bismuth in wallet ,so can i get some for mining test. thanks

926f33614d685f831b6f5a109dae6c27d8b3eda00d45947f8f8367b2
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!