Bitcoin Forum
May 03, 2024, 07:26:53 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 [60] 61 62 63 »
1181  Alternate cryptocurrencies / Altcoin Discussion / Re: what means PastDrift(int64_t nTime) and FutureDrift(int64_t nTime) in main.h on: June 05, 2015, 06:53:13 PM
Thanks. Does that mean if I mined but stop mining for two hours and mine again, this error will come out since the time is not within the range, how can I change it, can I change the data for the future to one month later, or anyway to solve this? Even I am a new miner if somebody else mined and stopped for two hours, I will still get the same problem, how to solve this
1182  Alternate cryptocurrencies / Altcoin Discussion / Re: is Abe blockchain easy to install? on: June 05, 2015, 01:47:58 PM
Thanks. I must install rpc ace on the node running wallet or I can just install it on any web hosting?
1183  Alternate cryptocurrencies / Altcoin Discussion / Re: is Abe blockchain easy to install? on: June 05, 2015, 12:57:18 PM
thanks
1184  Alternate cryptocurrencies / Altcoin Discussion / what means PastDrift(int64_t nTime) and FutureDrift(int64_t nTime) in main.h on: June 05, 2015, 05:50:57 AM
inline int64_t PastDrift(int64_t nTime)   { return nTime - 10 * 60; } // up to 10 minutes from the past
inline int64_t FutureDrift(int64_t nTime) { return nTime + 10 * 60; } // up to 10 minutes from the future
 in main.h

this requires I must keep sync, mining? if I stop for a while it will lose sync?
Thanks

if (GetBlockTime() > FutureDrift((int64_t)vtx[0].nTime))
        return DoS(50, error("CheckBlock() : coinbase timestamp is too early"));
1185  Alternate cryptocurrencies / Altcoin Discussion / Re: For altcoin,In conf file if I set gen=1, whether the node will mine coins? on: June 05, 2015, 01:45:56 AM
Thanks  actually it based on x11 x13 and x15, several coins
1186  Alternate cryptocurrencies / Altcoin Discussion / For altcoin,In conf file if I set gen=1, whether the node will mine coins? on: June 05, 2015, 01:29:03 AM
I use altcoin not bitcoin, if I set the conf file of node, gen=1 so it will mine coins by itself? For a new altcoin
1187  Alternate cryptocurrencies / Altcoin Discussion / Re: is Abe blockchain easy to install? on: June 05, 2015, 01:07:54 AM
Thanks a lot. Lot of stuff needs to install. Actually I am trying to make a altcoin to share. Whether multiple altcoin can share the same Abe explorer?
1188  Alternate cryptocurrencies / Altcoin Discussion / Re: is Abe blockchain easy to install? on: June 05, 2015, 01:03:48 AM
Thanks. That means I have to install it on a vps and cannot installed on a shared web hosting?

That means I have to install apache and python on the vps?
1189  Alternate cryptocurrencies / Altcoin Discussion / is Abe blockchain easy to install? on: June 05, 2015, 12:09:44 AM
Is it easy to install?
Whether it must be installed on the same node or it can be installed on a web but the wallet installed on a diffe[Suspicious link removed]
1190  Economy / Services / Re: [!] Create Your Own Alt-Coin [!] Coin + Wallet (Windows & Mac) Dev Service on: June 04, 2015, 09:53:59 PM
Still working?
1191  Alternate cryptocurrencies / Mining (Altcoins) / Is there any good way to keep sync? on: June 04, 2015, 06:40:43 PM
I run a Node on ubuntu but I must keep mining in order to keep sync, I try to keep running miner on ubuntu but it is not allowed because it uses too much CPU load, is there any good way? such as run on a windows server, or I run the miner several times daily? Thanks
1192  Economy / Services / Re: ★★★ Make Money With Adult Tube Sites - Only $50 - Huge Potential - SEO Included! on: June 04, 2015, 12:16:36 PM
Is there any example demo site?
1193  Alternate cryptocurrencies / Altcoin Discussion / How to make a windows headless version of Node (altcoin) on: June 04, 2015, 04:33:14 AM
thanks
I found on windows server the RPC port always change, why?
1194  Bitcoin / Bitcoin Technical Support / Very strange problem for Node on: June 04, 2015, 04:26:52 AM
I set up a ubuntu vps and a windows vps, on ubuntu VPS I run node, and on windows VPS a run the wallet, I use  port 27341 as the RPC port, but on "getpeerinfo", I found the port changed, what happned? addr's IP is right, but port different, strange.

also, how can I set up a node on windows server? easy? Thanks
1195  Alternate cryptocurrencies / Mining (Altcoins) / miner run ubuntu got 500 error on: June 04, 2015, 01:46:25 AM
I run ubuntu VPS and installed miner for X15, linux version,
when I run the miner,
./minerd -a bitblock -o localhost:23741 -u username -p password

it shows error: Http request failed, the requested URL returned error 500

What happend? do I need to install a web server such as apache?, since "Http request failed"
1196  Alternate cryptocurrencies / Altcoin Discussion / how to make a blockchain, not using api of blockchain.info on: June 03, 2015, 11:25:06 PM
how to make a blockchain, not using api of blockchain.info
1197  Alternate cryptocurrencies / Altcoin Discussion / how did altcoin share the blockchain of bitcoin? on: June 03, 2015, 11:04:52 PM
how did altcoin share the blockchain of bitcoin?
How to search blockchain of bitcoin to find the altcoin transaction?
What kind of requirment for the altcoin? using same algorithm and port?
Thanks
1198  Alternate cryptocurrencies / Altcoin Discussion / Re: How to install macports on ubuntu server? on: June 03, 2015, 10:57:24 PM
actually I want to compile a OSX version of wallet, I have ubuntu server not not a mac yet
1199  Alternate cryptocurrencies / Altcoin Discussion / problem for the RPC php curl code: on: June 03, 2015, 10:41:19 PM
$data_string = '{
        "jsonrpc": "1.0",
        "method": "getinfo",
        "id": "curltext",
        "params": {
        }
      }';



$ch = curl_init('http://username:password@MyNodeIPAddress:23741');                                                                     
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");                                                                     
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);                                                                 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);                                                                     
curl_setopt($ch, CURLOPT_HTTPHEADER, array(                                                                         
'Content-Type: application/json',                                                                               
'Content-Length: ' . strlen($data_string))                                                                       
);                                                                                                                   

$result = curl_exec($ch);

echo $result;


I try to above PHP code, use RPC to call the node IP and getinfo from the NODE of the altcoin, no response, what is the problem?
1200  Alternate cryptocurrencies / Altcoin Discussion / Re: I try to run exe miner on wine of ubuntu, error on: June 03, 2015, 10:39:07 PM
the problem is I do not have a ubuntu version of miner
Pages: « 1 ... 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 [60] 61 62 63 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!