Bitcoin Forum
May 12, 2024, 12:59:18 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 [727] 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 ... 822 »
  Print  
Author Topic: ⚡[ANN]⚡ ▐░Espers [ESP]░▌▐░PoW/PoS░▌▐░HMQ1725 Algo░▌ ▐░New Features░▌  (Read 923762 times)
gawajn
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
October 22, 2017, 11:40:51 AM
 #14521

Just curious. What happens to the coins of people which dont upgrade the wallet?
Is this a mandatory or an optional update  of the wallet?
Make sure you back up your wallet regularly! Unlike a bank account, nobody can help you if you lose access to your BTC.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
loremipsum
Hero Member
*****
Offline Offline

Activity: 644
Merit: 501


View Profile
October 22, 2017, 12:03:33 PM
 #14522

DO we know when masternodes are coming and the coins required? Smiley

From what I understand, masternodes are not coming before the end of 2018. It needs a lot of coding.

But there is progress with the POW algorithm now, which is good Smiley

tehMoonwalker
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250



View Profile WWW
October 22, 2017, 12:26:32 PM
 #14523

thx dev for Update  Grin

i have a compile error  Wink

In file included from version.cpp:6:0:
version.h:49:14: error: ‘int64_t’ does not name a type
 static const int64_t HRD_LEGACY_CUTOFF = 1509537600; // ON (TOGGLED 11/01/2017)
              ^
version.h:52:14: error: ‘int64_t’ does not name a type
 static const int64_t HRD_FUTURE_CUTOFF = 9993058800; // OFF (NOT TOGGLED)
              ^
makefile.unix:202: recipe for target 'obj/version.o' failed
make: *** [obj/version.o] Error 1

please fix that ...
 
thx

espers still has a very good future ahead, very good team, continues to do so ...   Smiley
0.8.6.8 is running again

when I MAKE 0.8.6.9 I get this error

Code:
In file included from src/version.cpp:6:0:
src/version.h:49:14: error: ‘int64_t’ does not name a type
 static const int64_t HRD_LEGACY_CUTOFF = 1509537600; // ON (TOGGLED 11/01/2017)
              ^
src/version.h:52:14: error: ‘int64_t’ does not name a type
 static const int64_t HRD_FUTURE_CUTOFF = 9993058800; // OFF (NOT TOGGLED)
              ^
Makefile:2322: recipe for target 'build/version.o' failed
make: *** [build/version.o] Error 1
:


add this to version.h right under "include <string>" and you should be able to compile:
#include <stdint.h>

Edit:

I wanted to add since some people are having issues compiling with newer openssl dependencies, libssl-dev-1.1.0 or openssl versions 1.1.x are not currently compatible.  To build, install libssl-dev-1.0.1 or the correct corresponding package for your current linux distro.  If your distro's package manager no longer has those packages available you will have to build openssl from source and link the libraries and headers manually when building.




you are a GENIUS , did it that way and no compile errors!
wttbs
Legendary
*
Offline Offline

Activity: 2210
Merit: 1109



View Profile
October 22, 2017, 06:51:52 PM
 #14524

thx dev for Update  Grin

i have a compile error  Wink

In file included from version.cpp:6:0:
version.h:49:14: error: ‘int64_t’ does not name a type
 static const int64_t HRD_LEGACY_CUTOFF = 1509537600; // ON (TOGGLED 11/01/2017)
              ^
version.h:52:14: error: ‘int64_t’ does not name a type
 static const int64_t HRD_FUTURE_CUTOFF = 9993058800; // OFF (NOT TOGGLED)
              ^
makefile.unix:202: recipe for target 'obj/version.o' failed
make: *** [obj/version.o] Error 1

please fix that ...
 
thx

espers still has a very good future ahead, very good team, continues to do so ...   Smiley
0.8.6.8 is running again

when I MAKE 0.8.6.9 I get this error

Code:
In file included from src/version.cpp:6:0:
src/version.h:49:14: error: ‘int64_t’ does not name a type
 static const int64_t HRD_LEGACY_CUTOFF = 1509537600; // ON (TOGGLED 11/01/2017)
              ^
src/version.h:52:14: error: ‘int64_t’ does not name a type
 static const int64_t HRD_FUTURE_CUTOFF = 9993058800; // OFF (NOT TOGGLED)
              ^
Makefile:2322: recipe for target 'build/version.o' failed
make: *** [build/version.o] Error 1
:


add this to version.h right under "include <string>" and you should be able to compile:
#include <stdint.h>

Edit:

I wanted to add since some people are having issues compiling with newer openssl dependencies, libssl-dev-1.1.0 or openssl versions 1.1.x are not currently compatible.  To build, install libssl-dev-1.0.1 or the correct corresponding package for your current linux distro.  If your distro's package manager no longer has those packages available you will have to build openssl from source and link the libraries and headers manually when building.



Works ! thanks.
worgon12
Sr. Member
****
Offline Offline

Activity: 427
Merit: 282



View Profile
October 22, 2017, 08:02:53 PM
 #14525





add this to version.h right under "include <string>" and you should be able to compile:
#include <stdint.h>

Edit:

I wanted to add since some people are having issues compiling with newer openssl dependencies, libssl-dev-1.1.0 or openssl versions 1.1.x are not currently compatible.  To build, install libssl-dev-1.0.1 or the correct corresponding package for your current linux distro.  If your distro's package manager no longer has those packages available you will have to build openssl from source and link the libraries and headers manually when building.



thx, no errors Grin  wallet works fine  Wink
alzander
Member
**
Offline Offline

Activity: 143
Merit: 10


View Profile
October 22, 2017, 08:09:28 PM
 #14526

Very excited about a new release. Any fixes are movement in the right direction for this coin.

is there a plan to decrease the amount of coins? there seem to be an awful lot of them  Roll Eyes

The supply has already been decreased from 500 billion. There's a reason for having that many coins, which is having a very small minimum unity that can be used for paying for micro-services, e.g. forwarding a single data packet. (That's my interpretation of it.) I've always been of the opinion that reducing the coin supply to 50 billion was already a mistake (albeit a rather small one.  Wink)


Great to see the update which fixes Pow. Is Cryptocoderz now working on the PoS "fix", which let people with low amount of espers stake more often?.

Yes, this seems to be the next item on the todo list, according to what Monoxide said in Discord.

I had no idea why the supply was so high. Just thought it was during the wave of ridiculously high coin supply coin launches. At least there was some logic behind it, though I think it needs to stay in a realm where the value can be measured in multiple sats.. otherwise, any coin doubles and halve in price every day, which is difficult to put a real price on... yes, I know there are other markets for better granularity (LTC, etc), but BTC rules the roost for now and the foreseeable future for giving a coin it's 'worth'.

━━━━━━━━━━━━━  ColossusCoinXT  ━━━━━━━━━━━━━
▰▰  Extremely Resource Friendly ━  Lightning Fast  ━ Stealth Anonymous  ▰▰
▰▰▰▰  TwitterDiscordBitcointalk  ▰▰▰▰
lilaj4de
Sr. Member
****
Offline Offline

Activity: 602
Merit: 250



View Profile
October 22, 2017, 08:13:16 PM
 #14527

What about the other updates and fixes according to the schedule? I hope that in the next corrections the currency reaches a considerable value
Gandalf86
Hero Member
*****
Offline Offline

Activity: 1330
Merit: 515


Coin Mage


View Profile
October 22, 2017, 08:47:48 PM
 #14528

I had no idea why the supply was so high. Just thought it was during the wave of ridiculously high coin supply coin launches. At least there was some logic behind it, though I think it needs to stay in a realm where the value can be measured in multiple sats.. otherwise, any coin doubles and halve in price every day, which is difficult to put a real price on... yes, I know there are other markets for better granularity (LTC, etc), but BTC rules the roost for now and the foreseeable future for giving a coin it's 'worth'.

And what if the price of Bitcoin rises? You should not make yourself depend on other blockchains. We can't reduce the coin supply by a tenfold each time Bitcoin increases by a tenfold. Even if Bitcoin is the base market, it is still unpredictable. I don't see any reason why people wouldn't use the Litecoin market.  Huh

Discord: Gandalf86#5805 (#341695925166538796) // Maintainer of Titcoin // Work smarter, not harder!
imranq
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
October 23, 2017, 03:01:00 AM
 #14529

Hey dev, I have downloaded new wallet for upcoming softfork. Where can I get new nodes list for that? also, how much coins we are going to burn? sorry it has already been answered. Thanks.
imranq
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
October 23, 2017, 03:11:58 AM
 #14530

Supply is 50 Billion. Okay
mattbellme
Member
**
Offline Offline

Activity: 135
Merit: 10


View Profile
October 23, 2017, 05:16:29 AM
 #14531

if we have coins on exchanges will they automatically be swapped? no need to worry about softfork?

▰   SEMUX   -   An innovative high-performance blockchain platform   ▰
■▬▬▬▬▬      Powered by Semux BFT consensus algorithm      ▬▬▬▬▬■
Github   -   Discord   -   Twitter   -   Telegram   -   Get Free Airdrop Now!
monoxide
Hero Member
*****
Offline Offline

Activity: 774
Merit: 500



View Profile
October 23, 2017, 05:23:32 AM
 #14532

Hey dev, I have downloaded new wallet for upcoming softfork. Where can I get new nodes list for that? also, how much coins we are going to burn? sorry it has already been answered. Thanks.

if we have coins on exchanges will they automatically be swapped? no need to worry about softfork?

There is not going to be any burning of coins or swap.

thehihoguy
Sr. Member
****
Offline Offline

Activity: 497
Merit: 251


View Profile WWW
October 23, 2017, 07:51:17 AM
 #14533

The amount of espers coins are not ridiculous high...the only reason people request for a burn is because they think it will automatically increase price....thats not how it works.

And about the wallet question, exchanges usually upgrade quite fast to the new wallet if there is one available for a coin so you dont have to do anything
gawajn
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
October 23, 2017, 11:30:27 PM
 #14534



add this to version.h right under "include <string>" and you should be able to compile:
#include <stdint.h>

Edit:

I wanted to add since some people are having issues compiling with newer openssl dependencies, libssl-dev-1.1.0 or openssl versions 1.1.x are not currently compatible.  To build, install libssl-dev-1.0.1 or the correct corresponding package for your current linux distro.  If your distro's package manager no longer has those packages available you will have to build openssl from source and link the libraries and headers manually when building.


The include solved my problem. Wallet is up and running!
Thanks for the help!
imranq
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
October 24, 2017, 03:25:05 AM
 #14535

Anyone has Node list that we need to ADD to config file?
cryptodet
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
October 24, 2017, 04:08:00 AM
 #14536

I advise all to dump this shit coin, core dev and his friends have been responsible for many pump and dump coins in the past with hidden premines that they don't disclose to investors. Core dev made this coin to manipulate and profit off investors he has over 2billion coins staking on the network constantly which is the reason why the staking system seems "broken" (because of unfair distribution) and why he does not release posw fix. He cannot write a white paper because the code is so similar to nova coin with hardly any of his own code. He is also constantly censoring anyone who speaks the truth about this by telling mods to mute them. Not just that, he also kicked out a team member called raudi that worked so hard for him by developing a new website because raudi wanted to find a second developer but core dev knew the second developer would uncover all his lies and manipulation. He runs the project purely centralized with every decision going through him. I am crypto detective, please never fall for scams such as this and always do your own research I have proof to back up every claim. Thank you, good night.
monoxide
Hero Member
*****
Offline Offline

Activity: 774
Merit: 500



View Profile
October 24, 2017, 05:20:26 AM
 #14537

I advise all to dump this shit coin, core dev and his friends have been responsible for many pump and dump coins in the past with hidden premines that they don't disclose to investors. Core dev made this coin to manipulate and profit off investors he has over 2billion coins staking on the network constantly which is the reason why the staking system seems "broken" (because of unfair distribution) and why he does not release posw fix. He cannot write a white paper because the code is so similar to nova coin with hardly any of his own code. He is also constantly censoring anyone who speaks the truth about this by telling mods to mute them. Not just that, he also kicked out a team member called raudi that worked so hard for him by developing a new website because raudi wanted to find a second developer but core dev knew the second developer would uncover all his lies and manipulation. He runs the project purely centralized with every decision going through him. I am crypto detective, please never fall for scams such as this and always do your own research I have proof to back up every claim. Thank you, good night.

So you are Fudding here too? You have no proof for your accusations. Maybe you just try to accumulate more ESP for yourself...
monoxide
Hero Member
*****
Offline Offline

Activity: 774
Merit: 500



View Profile
October 24, 2017, 05:25:12 AM
 #14538

Anyone has Node list that we need to ADD to config file?

Try adding these:

seednode=198.50.180.192
addnode=198.50.180.192

and here is a link to nodelist: https://stats.espers.io/download/addnodes.txt
loremipsum
Hero Member
*****
Offline Offline

Activity: 644
Merit: 501


View Profile
October 24, 2017, 07:13:20 AM
Last edit: October 24, 2017, 10:57:47 AM by loremipsum
 #14539

I advise all to dump this shit coin, core dev and his friends have been responsible for many pump and dump coins in the past with hidden premines that they don't disclose to investors. Core dev made this coin to manipulate and profit off investors he has over 2billion coins staking on the network constantly which is the reason why the staking system seems "broken" (because of unfair distribution) and why he does not release posw fix. He cannot write a white paper because the code is so similar to nova coin with hardly any of his own code. He is also constantly censoring anyone who speaks the truth about this by telling mods to mute them. Not just that, he also kicked out a team member called raudi that worked so hard for him by developing a new website because raudi wanted to find a second developer but core dev knew the second developer would uncover all his lies and manipulation. He runs the project purely centralized with every decision going through him. I am crypto detective, please never fall for scams such as this and always do your own research I have proof to back up every claim. Thank you, good night.

Right! Brand new account just registered today just to make one post! Looks very legitimate..!

Are you trying to buy in cheap?

gawlea
Hero Member
*****
Offline Offline

Activity: 756
Merit: 579



View Profile
October 24, 2017, 12:33:41 PM
 #14540

I advise all to dump this shit coin, core dev and his friends have been responsible for many pump and dump coins in the past with hidden premines that they don't disclose to investors. Core dev made this coin to manipulate and profit off investors he has over 2billion coins staking on the network constantly which is the reason why the staking system seems "broken" (because of unfair distribution) and why he does not release posw fix. He cannot write a white paper because the code is so similar to nova coin with hardly any of his own code. He is also constantly censoring anyone who speaks the truth about this by telling mods to mute them. Not just that, he also kicked out a team member called raudi that worked so hard for him by developing a new website because raudi wanted to find a second developer but core dev knew the second developer would uncover all his lies and manipulation. He runs the project purely centralized with every decision going through him. I am crypto detective, please never fall for scams such as this and always do your own research I have proof to back up every claim. Thank you, good night.

PoSW was OK last time i've checked! Wink If you know such amount of inside info why don't you come in here with something we don't know? Anyway waithing for the proof that back up every claim. Good night too, there in the land of trolls! Wink
Pages: « 1 ... 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 [727] 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 ... 822 »
  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!