Bitcoin Forum
May 05, 2024, 02:25:28 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 [7] 8 9 10 11 12 13 14 »  All
  Print  
Author Topic: [ANN] Nightmare | NM | FRESH algo | NightSend | Encrypted P2P Chat | 8/15  (Read 25308 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.
Amph
Legendary
*
Offline Offline

Activity: 3206
Merit: 1069



View Profile
August 17, 2014, 02:15:52 PM
 #121

supernova is becoming fucking slow, all day just to see the "pool list"
1714919128
Hero Member
*
Offline Offline

Posts: 1714919128

View Profile Personal Message (Offline)

Ignore
1714919128
Reply with quote  #2

1714919128
Report to moderator
1714919128
Hero Member
*
Offline Offline

Posts: 1714919128

View Profile Personal Message (Offline)

Ignore
1714919128
Reply with quote  #2

1714919128
Report to moderator
It is a common myth that Bitcoin is ruled by a majority of miners. This is not true. Bitcoin miners "vote" on the ordering of transactions, but that's all they do. They can't vote to change the network rules.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714919128
Hero Member
*
Offline Offline

Posts: 1714919128

View Profile Personal Message (Offline)

Ignore
1714919128
Reply with quote  #2

1714919128
Report to moderator
1714919128
Hero Member
*
Offline Offline

Posts: 1714919128

View Profile Personal Message (Offline)

Ignore
1714919128
Reply with quote  #2

1714919128
Report to moderator
ItsNotMe
Full Member
***
Offline Offline

Activity: 238
Merit: 100



View Profile
August 17, 2014, 06:16:45 PM
 #122

Please put the copyright notices back in stealth.cpp and smessage.cpp for ShadowCoin.

The boss has spoken!
You have been called out...copyright fraud is stealing. This is what I've been saying the whole time.
ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
August 17, 2014, 06:21:54 PM
 #123

supernova is becoming fucking slow, all day just to see the "pool list"

You mean the Pool stats? Yes everyone is hammering it currently, i am not Sure why, but i will implement some caching shortly

suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
nightmarecoin (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 17, 2014, 06:41:29 PM
 #124

Please put the copyright notices back in stealth.cpp and smessage.cpp for ShadowCoin.

We will do this for you. You shouldn't be claiming you coded stealth.cpp though, it is created by the DarkWallet developers, as well as the diagram.
rynomster
Full Member
***
Offline Offline

Activity: 164
Merit: 100


View Profile
August 17, 2014, 07:01:33 PM
 #125

Please put the copyright notices back in stealth.cpp and smessage.cpp for ShadowCoin.

We will do this for you. You shouldn't be claiming you coded stealth.cpp though, it is created by the DarkWallet developers, as well as the diagram.

stealth.cpp is our code, the diagram is on their wiki, and we did give attribute to them.

ItsNotMe
Full Member
***
Offline Offline

Activity: 238
Merit: 100



View Profile
August 17, 2014, 07:04:15 PM
 #126

Please put the copyright notices back in stealth.cpp and smessage.cpp for ShadowCoin.

We will do this for you. You shouldn't be claiming you coded stealth.cpp though, it is created by the DarkWallet developers, as well as the diagram.

stealth.cpp is our code, the diagram is on their wiki, and we did give attribute to them.
SDC does things the right way...^^
nightmarecoin (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 17, 2014, 07:07:52 PM
 #127

Please put the copyright notices back in stealth.cpp and smessage.cpp for ShadowCoin.

We will do this for you. You shouldn't be claiming you coded stealth.cpp though, it is created by the DarkWallet developers, as well as the diagram.

stealth.cpp is our code, the diagram is on their wiki, and we did give attribute to them.

Can you prove this? It is very similar to DarkWallet's open sourced stealth.cpp...we have no problem giving you credit. The github will be updated later today. You were also already credited in the COPYING file and on our OP.


Also you may also want to update your sendto api, you should never change hardcoded APIs...we can help submit a commit to your github if you are interested.
rynomster
Full Member
***
Offline Offline

Activity: 164
Merit: 100


View Profile
August 17, 2014, 07:15:29 PM
 #128

DarkWallet stealth.cpp:
https://github.com/libbitcoin/libwallet/blob/master/src/stealth.cpp

ShadowCoin stealth.cpp:
https://github.com/SDCDev/shadowcoin/blob/master/src/stealth.cpp

nightmarecoin (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 17, 2014, 07:17:12 PM
Last edit: August 17, 2014, 07:58:09 PM by nightmarecoin
 #129


Thank you. Yes credit will be given. We will submit a commit to your rpcwallet.cpp later today for the sendto fix to help you out. Here it is before we commit it -

Code:
Value sendtoaddress(const Array& params, bool fHelp)
{
    if (fHelp || params.size() < 2 || params.size() > 5)
        throw runtime_error(
            "sendtoaddress <nightmareaddress> <amount> [comment] [comment-to]\n"
            "<amount> is a real and is rounded to the nearest 0.000001"
            + HelpRequiringPassphrase());
 
    CBitcoinAddress address(params[0].get_str());
    if (!address.IsValid())
        throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Nightmare address");
 
    // Amount
    int64_t nAmount = AmountFromValue(params[1]);
 
    CWalletTx wtx;
    std::string sNarr;
/*
    if (params.size() > 2 && params[2].type() != null_type && !params[2].get_str().empty())
        sNarr = params[2].get_str();
 
    if (sNarr.length() > 24)
        throw runtime_error("Narration must be 24 characters or less.");
*/
    // Wallet comments
    if (params.size() > 2 && params[2].type() != null_type && !params[2].get_str().empty())
        wtx.mapValue["comment"] = params[2].get_str();
    if (params.size() > 3 && params[3].type() != null_type && !params[3].get_str().empty())
        wtx.mapValue["to"]      = params[3].get_str();
 
    sNarr = "";
    if (pwalletMain->IsLocked())
        throw JSONRPCError(RPC_WALLET_UNLOCK_NEEDED, "Error: Please enter the wallet passphrase with walletpassphrase first.");
 
    string strError = pwalletMain->SendMoneyToDestination(address.Get(), nAmount, sNarr, wtx);
    if (strError != "")
        throw JSONRPCError(RPC_WALLET_ERROR, strError);
 
    return wtx.GetHash().GetHex();
}
qwep
Legendary
*
Offline Offline

Activity: 1008
Merit: 1000



View Profile
August 17, 2014, 07:25:48 PM
 #130

Dev when you plan to exchange for bittrex Wink
nightmarecoin (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 17, 2014, 07:35:25 PM
 #131

Dev when you plan to exchange for bittrex Wink

You may retweet any status on twitter - https://twitter.com/Vindyne8/status/501044641697775617

Vindyne8 is running promotions for Nightmare.
nightmarecoin (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 17, 2014, 08:21:54 PM
Last edit: August 17, 2014, 08:36:37 PM by nightmarecoin
 #132

MAC OS X WALLET NOW AVAILABLE

https://mega.co.nz/#!EUhWGLYa!yotSzEBqAa36KiWoe8B995XYPnfOFfoSlLCQUes2lX4
EmilioMann
Legendary
*
Offline Offline

Activity: 2184
Merit: 1028


#mitandopelomundo


View Profile
August 17, 2014, 08:50:54 PM
 #133


Nice!
cisahasa
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


View Profile
August 17, 2014, 09:06:50 PM
Last edit: August 17, 2014, 09:33:37 PM by cisahasa
 #134


-1

nightmarecoin (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 17, 2014, 09:09:27 PM
Last edit: August 17, 2014, 09:37:19 PM by nightmarecoin
 #135


Thank you! We are working on bringing the Linux Wallet to you all very soon!

Our block explorer will be completed soon too.

To all FUDsters - We are not the developers from Freshcoin or SDC, We have no affiliation with either of them. All spamming and trolling will be deleted. Credits were given, there is nothing to complain about.
ptic-1
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250


View Profile
August 17, 2014, 10:18:23 PM
 #136

+1 -3  Grin dont know who to bellive anymore.  newbie is Immediate red punkt I guess

█ B █ T █ C █12J89RucSq2vX5m5TcC5fP3PwVUrtWHn4c█ B █ T █ C █
djm34
Legendary
*
Offline Offline

Activity: 1400
Merit: 1050


View Profile WWW
August 18, 2014, 12:44:02 AM
Last edit: August 18, 2014, 12:54:06 AM by djm34
 #137

lol that guy deleted my message before I even finished typing it.

So I retype it  Grin

Do you plan to compensate the author and developper (myself, Talkteam, and a few others) of the theme you used for your wallet (deleting seems to be your answer... bad answer)

And the credit were not given to us either (I think you have very little idea of the time it takes to code that...)

djm34

djm34 facebook page
BTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze
Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
nightmarecoin (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 18, 2014, 01:04:10 AM
Last edit: August 18, 2014, 01:41:46 AM by nightmarecoin
 #138

djm34 - Your QT theme is entirely different than ours, we hand coded our wallet and it is based off the open source qtDarkStyle modified to our purple theme. I am sorry but you just can't claim colors...We won't be giving any credit to you as we don't even know your coin existed. None of the code is the same in anyway.

On a non-trolling note guys, MiningRigRentals.com has agreed to re-enable FRESH site-wide so rent or lease your rigs! - https://twitter.com/nightmarecoin/status/501108769481560064
Guy Mollet
Member
**
Offline Offline

Activity: 102
Merit: 10


View Profile
August 18, 2014, 01:05:52 AM
 #139

Has 4000 block, we need to exchange value reflects the coin.
nightmarecoin (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 18, 2014, 07:40:54 AM
 #140

Has 4000 block, we need to exchange value reflects the coin.

Please retweet any status under #NM on twitter!

https://twitter.com/nightmarecoin

Check the OP for bounties! Lots are still available!
Pages: « 1 2 3 4 5 6 [7] 8 9 10 11 12 13 14 »  All
  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!