Pages:
Author

Topic: [ANN] IXCoin [IXC] The Original Bitcoin Sidechain - page 19. (Read 42282 times)

sr. member
Activity: 261
Merit: 305
Bump for visibility Cool

To the moon




Soon to number 1.  Nothing less will be acceptable nor tolerated. 



I like a man full of convictions and unshakeable determination even when the odds say your chances of success are near absolute zero.  But if you feel it still, after all these years of almosts and failures, then I doubt your heart will quit even if you try. 

 
hero member
Activity: 666
Merit: 516
Fuck BlackRock

CataCata, I’ve been able to find a coder to help out.  The negative is that he’s still learning so it may take time (soon), the positive is that it’s my son so it’s free slave labor.  Character building stuff.  Doing everything I can with what I got.  Smiley




Send me one with the 2014 logo below Wink - iXcoin - copying bitcoin means copying bitcoin (at least until v 0.9.0 when Bitcoin Core began restricting the protocol, however merge mining retains data on all chains and all these early Bitcoin 2.0/layer 2/smart protocols already on chain from early 2014 and beforehand. Color me crazy? All the smart money is headed to Ixcoin per "vitalik.eth" Smiley remember?



Some reading to spark interest...
https://github.com/devcoin/core/commits/devcoin0.9.2 (reaction to bitcoin v0.9.0 protocol 70002 restrictions on CP/OP_RETURN)
https://www.coindesk.com/developers-battle-bitcoin-block-chain (story on Counterparty.co and bitcoin "core developers" battle)
https://www.coindesk.com/bitcoin-core-dev-update-5-transaction-fees-embedded-data Originally 2013 announced plans for 0.9 sparked CP idea
https://en.bitcoin.it/wiki/Smart_Property (via prev announced OP_RETURN 80 bytes allowing CP protocol to work as originally written)
https://www.devtome.com/ixcoin_-_the_surviving_odd_coin (devtome info on iXcoin from 2014, v 0.8.6 test and old 0.3.24 version for windows)
https://github.com/knotwork/old-devcoin-qt/commit/95a21c762cbc603126caefdd82d2492443fa7c8c markm (Mark Metson "knotwork") old-devcoin-qt "to add merge mining to it"/commit for new seeds w/ unannounced changes to png/svg files from original Bitcoin "qt"/GUI May 12, 2013

"IXCoin, same spelling from Devcoin co-founder, creator as 2014 logo contest accepted here and pink logo"


If Counterparty type protocols work on bitcoin presumably they should be able to work on IXCoin.

Looks like we have some work left "TODO" here.



Think (OTC) Pink - everything done manually, on other platforms (tokens of the GM include IXC on Horizon, DOTS - Open Txs, Stellar) "over the counter" no automagically on chain, but maybe partially written to chain and different DLT (Horizon blockchain, Stellar DEX/Ledger, kept track of in parallel chainz via merge mining but Bitcoin Core nodes rejecting them as valid on their "BTC value end", doesn't mean its not there.

https://bitcoin-otc.com/

Bitcoin OTC marketplace - off-chain trades for BTC, from these early days for other currencies - through IRC Smiley
Quote
"#bitcoin-otc marketplace
#bitcoin-otc is an over-the-counter marketplace for trading with bitcoin. The marketplace is located in #bitcoin-otc channel on the freenode IRC network. If you don't have an IRC client, click here to visit the channel with your web browser.

Quote
To complement the OTC marketplace, we offer a web of trust service. Due to the p2p nature of OTC transactions, you are exposed to counterparty risk. To mitigate this risk, you need to have access to your counterparty's reputation and trade history. This is precisely the kind of information that the OTC web of trust provides.

Are we using a combination of alt chain, original testnets, other nodes and merge mined projects, to abstract true value from the main Bitcoin network? You bet.



OTC doesn't mean just value in currency for crypto, it means what is OTC hashed onto different chains from transactions made directly out of one chain and into another, just manually inserted by the parties involved. Automagical relay requires time and interoperable relay / consensus.

Also a protocol change away from making all nodes whether IXC, DVC, I0C, CLC, GRP, NMC, XGG, and this current Bitcoin Core dominated Bitcoin Network from relaying interoperable data. Old data already written there - colored satoshis, bitcoins, you name it. Merge mining means at least this all relays back to Dec 29, 2011 from the knotwork repository I linked. Probably why that very initial commit has the patch here (https://github.com/knotwork/old-devcoin-qt/commit/14c8f0e47894790d4eb3e683fe0440d56fd1f694#diff-c67444ecf75e00c9c2e229b32ad6db8361bd999741dbc02d169f70cc42e8f7dfR933) and mentions Ixcoin Miner, I0coin Miner, to implement merge mining in that tweaked old-devcoin-qt GUI  Smiley

Code:
 CBlock* CreateNewBlock(CReserveKey& reservekey)
 {
     CBlockIndex* pindexPrev = pindexBest;
@@ -2925,11 +3001,35 @@ bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey)
     uint256 hash = pblock->GetHash();
     uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();

-    if (hash > hashTarget)
-        return false;
+    CAuxPow *auxpow = pblock->auxpow.get();
+
+    if (auxpow != NULL)
+    {
+        if (!auxpow->Check(hash, pblock->GetChainID()))
+            return error("AUX POW is not valid");
+
+        if (auxpow->GetParentBlockHash() > hashTarget)
+            return error("AUX POW parent hash %s is not under target %s", auxpow->GetParentBlockHash().GetHex().c_str(), hashTarget.GetHex().c_str());
+
+        //// debug print
+        printf("I0coinMiner:\n");
+        printf("AUX proof-of-work found  \n     our hash: %s   \n  parent hash: %s  \n       target: %s\n",
+                hash.GetHex().c_str(),
+                auxpow->GetParentBlockHash().GetHex().c_str(),
+                hashTarget.GetHex().c_str());
+    }
+    else
+    {
+        if (hash > hashTarget)
+            return false;

+        //// debug print
+        printf("I0coinMiner:\n");
+        printf("proof-of-work found  \n  hash: %s  \ntarget: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str());
+    }
+
     //// debug print
-    printf("BitcoinMiner:\n");
+    printf("IxcoinMiner:\n");
     printf("proof-of-work found  \n  hash: %s  \ntarget: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str());
     pblock->print();
     printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str());
@@ -3152,3 +3252,22 @@ void GenerateBitcoins(bool fGenerate, CWallet* pwallet)
         }
     }
 }

But you know this already. I just am providing a reason to stay optimistic. Many manual and OTC like direct transactions of value and relay of different code on different chains done without being relayed, yet very much accounted for by the oldest and longest continuously running/surviving projects.

"BitcoinX" (Colored Coins, EPOBC, colored satoshis) and the detail in the citations. What DNS did original token protocols reference on Bitcoin as layer 2 began on the base bitcoin block chain layer. Parallel to where the early altcoin protocols began under Bitcoin Project Development attached to the post 2011 new "official" Bitcoin Project home domain, formerly host of the official community forums that early alt/mm with Bitcoin projects were born of, along with one of satoshi's last protocol discussions "bitDNS" Smiley. Whats in a name?  Grin

Would I be upset if on this end that a one satoshi value of DVC was in fact colored in a way that the code is there all over say, non standard Bitcoin coinbase txs, but accepted in DVC merge mined blocks? Hell no. Smart Property and planned chaos are great security. EPOBC dates back to a earlier 2011 implemented colored satoshis by genesis and colored satoshi transfer in Bitcoin transactions on the bitcoin block chain, the year before the original colored coins paper was written by a bitcointalk member "killerstorm" (released as "BitcoinX.pdf) who takes part in discussion throughout man Devcoin, Groupcoin, Tenebrix etc threads (GM coins) in early bitcointalk pre-0.9.0 and concurrent 2014 layer 2 protocols (Counterparty) Bitcoin 2.0 discussions on Bitcoin Forum.

Maybe that's why a day before publishing/releasing "BitcoinX.pdf" aka the "Colored Coins Paper" (#1) on December 3, 2012 he was in the original Devcoin development thread discussing http://the purpose of Devcoin (which wasn't truly the original considering Devcoin development began unnanounced yet somewhat publicly in the original Groupcoin thread (even having its genesis block creation mentioned by markm before Devcoin's noted July 20-22, 2011 Block 0 http://created July 8, 2011 in the Groupcoin Bounty Thread - original development on bitcoin.org's hosted forums) -- telling. Once the community seemingly moved over to the unofficial bitcointalk.org forum satoshi wasn't even communicating by mailing list after May 2011 with the bitcoin developers. So maybe this is the point where satoshi himself started stealth operation with a new name, after transfer to new DNS was completed forward (Bitcoin's Project site moved from Sourceforge to bitcoin.org, Bitcoin's community forums moved from bitcoin.org to bitcointalk.org). New names, old data, similar software for the forums but who knows what type of data may not have made the leap to the new host/domain name. Smiley

From the first 2011/12 discussions on Colored "satoshis" and their implementations via EPOBC, eventually they were grouped in a paper proposing colored "bitcoins" released December 4, 2012 with some simple references to just 4 sources, one such source being the original bitcoin website slogan, then at https://web.archive.org/web/20110705111938/http://bitcoin.sourceforge.net/?page_id=5 from its v 0.3.21-0.3.24 releases (May 2011 to August 2011, right when the first merge mined coins with Bitcoin IXC, DVC, I0C and even name coin were being developed <-DVC not even being announced at genesis but also continuing on as a chain developed within the Bitcoin Project/Development part of the Bitcoin section of the then bitcoin.org hosted Bitcoin Forum). However the original Bitcoin domain/site with the title Bitcoin P2P virtual currency (at sourceforge where its original project development took place, with source code also additionally on github by then) is cited in the Colored Coins 2012 white paper draft (1) at http://bitcoin.org - which by 2012, was the sole home domain for the Bitcoin Project, but no longer the forums.  This is why I mention the forums in 2011 being attached to the bitcoin.org domain, if you are on the official project site in 2011 from sourceforge that's where the "Forums" only link to the bitcoin.org domain exist https://web.archive.org/web/20110705111938/http://bitcoin.sourceforge.net/?page_id=5 and you end up here in 2011 > https://web.archive.org/web/20110705111938/http://bitcointalk.org. But this was also by the time Satoshi Nakamoto was not in the picture. 

What I'm trying to say these protocols all use eachother to get around Bitcoin Core dev restrictions for a later date where their nodes non-dominance or a merge/flip of the switch on the actual value and power of these linked protocols and blockchains/tokens all converge into the same network with their own truths and have value back from BTC to reflect their two way value to the success of Bitcoin Core chain and back to the very beginning when protocol was open to develop freely upon (Open Source principals) and "Merge" mining is recognized in retrospect as initial distribution of coins that migrated to being tokens with value written directly to the Bitcoin blockchain and directly responsible for all BTC's success. That's called kickback.

And being tokens isn't a bad thing. Coins are tx outputs generated by difficult POW in these merge mined coins. If they end up being tokenized they can freely travel to other base layer chains and capture the migration value of say, Ethereum (which, could very well be vaporware for anything merge mined of value that may have had their tokens/initial pow merge mined coins repurposed and renamed as the post-2014 Ethereum chain launched with pre-allocated tokens in Block 0 accounts that came from "where exactly?" (but funded by a BTC presale, of course Smiley )

Devcoin funding open source developers would make sense here. And IXC and I0C being done with 99-100+% of their generation by POW/distribution make things seem closer than ever for a day where these OG merge mined coins end up finishing their distribution and migration to Bitcoin 2.0. Maybe even nodes naturally having more power to upend protocol of post 0.9.0 Bitcoin Core rebranded software and how the nodes prevent the network "Non-Standard" txs from being properly validated because a mechanism/smart mechanism can unleash it on the dumb/ignorant BTC chain "self fulfilling prophecy" Smiley
member
Activity: 89
Merit: 61
I am out of here
legendary
Activity: 3052
Merit: 1534
www.ixcoin.net

CataCata, I’ve been able to find a coder to help out.  The negative is that he’s still learning so it may take time (soon), the positive is that it’s my son so it’s free slave labor.  Character building stuff.  Doing everything I can with what I got.  Smiley


hero member
Activity: 666
Merit: 516
Fuck BlackRock
so lets buy some IXC - I think nows a great opportunity to re-enter the buy side =P/meet some of the cheap asks out there Smiley - don't forget I0C too!

Hi there
Interesting
Do you have the knowledge or means to update ixcoin adding at least what i mentioned above or more?
What about the dev updating devcoin. could the guy help?

What is it you want updated. So far problems for Ixcoin are lesser/worse than the current ones for Bitcoin which I highlighted in a tweet:

https://twitter.com/MasterGrimaldi/status/1340732471718129669

Layer 2 protocols kinda conflict and some don't handle reorgs but parse from the startup of the software/when people run the code - or some don't handle reorgs at all and perhaps block some functionality that already exists.

Merge mined coins inherit these problems even if they existed before the "Bitcoin 2.0 or higher level/layered protocols and tokens" (at least in public).

But a las Ixcoin did HARD FORK if you believe the devs as of May 2018. So it not sharing a genesis block (or genesis block copy - see Abe's view on Devcoin 0 lol) with "Bitcoin" (or BTC whatever the units are called) - is a plus IMO. Perhaps updating the Ixcoin software is not necessary yet. Maybe its doing what it has to at this time. Dogecoin source code not updated since the original or at least months after and you don't see excuses for that being why its price suffers or what not - its a transfer currency basically with much use on the internet (forget the Reddit community, but again don't because that matters too even if its a planned community of insider devs and not exactly grass roots to outside people like me - I don't care because it matters). Now consider IXC is trapped on an old wallet running in maintenance on Yobit which has 3 different TLD names and one if for a different domain name Yobitex.... Something that matters for API I'm sure somewhere and value is part of that result as much as an old wallet being in maintenance so long that doesn't allow withdrawal of your IXC. Sounds like Namecoin could help with that error but it already may be set up in the current iXcoin Core wallet as credits for its opening title when you fire it up as a GUI on Windows shows (C) 2009-2017 Bitcoin **Core** (see if you can find that logo on one of the iXcoin Core - Wallet menus Wink ) Namecoin and iXcoin developers.

Sometimes updates aren't needed. Sometimes software extensibility is just that - extendable. Or so I think.

Either way no bots on FreiExchange, so I buy the f*ck out of "iXcoin" there.
member
Activity: 89
Merit: 61
so lets buy some IXC - I think nows a great opportunity to re-enter the buy side =P/meet some of the cheap asks out there Smiley - don't forget I0C too!

Hi there
Interesting
Do you have the knowledge or means to update ixcoin adding at least what i mentioned above or more?
What about the dev updating devcoin. could the guy help?
hero member
Activity: 666
Merit: 516
Fuck BlackRock
so lets buy some IXC - I think nows a great opportunity to re-enter the buy side =P/meet some of the cheap asks out there Smiley - don't forget I0C too!
member
Activity: 89
Merit: 61

Hi
 news?

Bitcoin moon imminent and alts will follow.  Smiley


Naa.  ixc go nowhere.  Not even a wallet update? donation mechanism to be made clear and simple. correct indication amount of total coins and residual amount  in donation fund, a multi-platform easy to set up wallet, update to the last bitcoin’s...
and no active dev.
member
Activity: 89
Merit: 61

Hi
 news?
newbie
Activity: 40
Merit: 0
very nice `` fixed   ``thanks  Ixcoin community
jr. member
Activity: 52
Merit: 36
tried to add node but didn't work



15:31:33

addnode=95.217.77.209


15:31:33

Method not found (code -32601)


You need to type "addnode 95.217.77.209 add" for each node.

Use these:

addnode 87.98.159.143 add
addnode 64.71.72.56 add
addnode 95.217.77.209 add
addnode 52.15.150.105 add

Maybe also try with the antivirus off.

The last option would be to just backup your wallet.dat and re-install and download the blockchain from scratch.
newbie
Activity: 40
Merit: 0
I appreciate all the help but still will not sync 










2020-12-03 03:26:41 iXcoin version v0.14.1.0-2f7da53
2020-12-03 03:26:41 InitParameterInteraction: parameter interaction: -whitelistforcerelay=1 -> setting -whitelistrelay=1
2020-12-03 03:26:41 GUI: "registerShutdownBlockReason: Successfully registered: iXcoin Core didn't yet exit safely..."
2020-12-03 03:26:46 Default data directory C:\Users\wish you where beer\AppData\Roaming\iXcoin
2020-12-03 03:26:46 Using data directory F:\ixcoin
2020-12-03 03:26:46 Using config file F:\ixcoin\ixcoin.conf
2020-12-03 03:26:46 Using at most 125 connections (2048 file descriptors available)
2020-12-03 03:26:46 Using 2 threads for script verification
2020-12-03 03:26:46 scheduler thread start
2020-12-03 03:26:46 Using BerkeleyDB version Berkeley DB 4.8.30: (April  9, 2010)
2020-12-03 03:26:46 Using wallet wallet.dat
2020-12-03 03:26:46 init message: Verifying wallet...
2020-12-03 03:26:46 CDBEnv::Open: LogDir=F:\ixcoin\database ErrorFile=F:\ixcoin\db.log
2020-12-03 03:26:46 Bound to [::]:8337
2020-12-03 03:26:46 Bound to 0.0.0.0:8337
2020-12-03 03:26:46 Cache configuration:
2020-12-03 03:26:46 * Using 2.0MiB for block index database
2020-12-03 03:26:46 * Using 8.0MiB for chain state database
2020-12-03 03:26:46 * Using 290.0MiB for in-memory UTXO set
2020-12-03 03:26:46 init message: Loading block index...
2020-12-03 03:26:46 Opening LevelDB in F:\ixcoin\blocks\index
2020-12-03 03:26:46 Opened LevelDB successfully
2020-12-03 03:26:46 Using obfuscation key for F:\ixcoin\blocks\index: 0000000000000000
2020-12-03 03:26:46 Opening LevelDB in F:\ixcoin\chainstate
2020-12-03 03:26:46 Opened LevelDB successfully
2020-12-03 03:26:46 Wrote new obfuscate key for F:\ixcoin\chainstate: 0c5de3b8263507c8
2020-12-03 03:26:46 Using obfuscation key for F:\ixcoin\chainstate: 0c5de3b8263507c8
2020-12-03 03:26:46 LoadBlockIndexDB: last block file = 0
2020-12-03 03:26:46 LoadBlockIndexDB: last block file info: CBlockFileInfo(blocks=0, size=0, heights=0...0, time=1970-01-01...1970-01-01)
2020-12-03 03:26:46 Checking all blk files are present...
2020-12-03 03:26:46 LoadBlockIndexDB: transaction index disabled
2020-12-03 03:26:46 Initializing databases...
2020-12-03 03:26:46 Pre-allocating up to position 0x1000000 in blk00000.dat
2020-12-03 03:26:46 init message: Verifying blocks...
2020-12-03 03:26:46  block index              94ms
2020-12-03 03:26:46 init message: Loading wallet...
2020-12-03 03:26:46 nFileVersion = 140100
2020-12-03 03:26:46 Keys: 0 plaintext, 0 encrypted, 0 w/ metadata, 0 total
2020-12-03 03:26:46 Performing wallet upgrade to 60000
2020-12-03 03:26:46 keypool added key 1, size=1
2020-12-03 03:26:47 keypool added key 2, size=2
2020-12-03 03:26:47 keypool added key 3, size=3
2020-12-03 03:26:47 keypool added key 4, size=4
2020-12-03 03:26:47 keypool added key 5, size=5
2020-12-03 03:26:47 keypool added key 6, size=6
2020-12-03 03:26:47 keypool added key 7, size=7
2020-12-03 03:26:47 keypool added key 8, size=8
2020-12-03 03:26:47 keypool added key 9, size=9
2020-12-03 03:26:47 keypool added key 10, size=10
2020-12-03 03:26:47 keypool added key 11, size=11
2020-12-03 03:26:47 keypool added key 12, size=12
2020-12-03 03:26:47 keypool added key 13, size=13
2020-12-03 03:26:47 keypool added key 14, size=14
2020-12-03 03:26:47 keypool added key 15, size=15
2020-12-03 03:26:47 keypool added key 16, size=16
2020-12-03 03:26:47 keypool added key 17, size=17
2020-12-03 03:26:47 keypool added key 18, size=18
2020-12-03 03:26:47 keypool added key 19, size=19
2020-12-03 03:26:47 keypool added key 20, size=20
2020-12-03 03:26:47 keypool added key 21, size=21
2020-12-03 03:26:47 keypool added key 22, size=22
2020-12-03 03:26:47 keypool added key 23, size=23
2020-12-03 03:26:47 keypool added key 24, size=24
2020-12-03 03:26:47 keypool added key 25, size=25
2020-12-03 03:26:47 keypool added key 26, size=26
2020-12-03 03:26:47 keypool added key 27, size=27
2020-12-03 03:26:47 keypool added key 28, size=28
2020-12-03 03:26:47 keypool added key 29, size=29
2020-12-03 03:26:47 keypool added key 30, size=30
2020-12-03 03:26:47 keypool added key 31, size=31
2020-12-03 03:26:47 keypool added key 32, size=32
2020-12-03 03:26:47 keypool added key 33, size=33
2020-12-03 03:26:47 keypool added key 34, size=34
2020-12-03 03:26:47 keypool added key 35, size=35
2020-12-03 03:26:47 keypool added key 36, size=36
2020-12-03 03:26:47 keypool added key 37, size=37
2020-12-03 03:26:47 keypool added key 38, size=38
2020-12-03 03:26:47 keypool added key 39, size=39
2020-12-03 03:26:47 keypool added key 40, size=40
2020-12-03 03:26:47 keypool added key 41, size=41
2020-12-03 03:26:47 keypool added key 42, size=42
2020-12-03 03:26:47 keypool added key 43, size=43
2020-12-03 03:26:47 keypool added key 44, size=44
2020-12-03 03:26:47 keypool added key 45, size=45
2020-12-03 03:26:47 keypool added key 46, size=46
2020-12-03 03:26:47 keypool added key 47, size=47
2020-12-03 03:26:47 keypool added key 48, size=48
2020-12-03 03:26:47 keypool added key 49, size=49
2020-12-03 03:26:47 keypool added key 50, size=50
2020-12-03 03:26:47 keypool added key 51, size=51
2020-12-03 03:26:47 keypool added key 52, size=52
2020-12-03 03:26:47 keypool added key 53, size=53
2020-12-03 03:26:47 keypool added key 54, size=54
2020-12-03 03:26:47 keypool added key 55, size=55
2020-12-03 03:26:47 keypool added key 56, size=56
2020-12-03 03:26:47 keypool added key 57, size=57
2020-12-03 03:26:47 keypool added key 58, size=58
2020-12-03 03:26:47 keypool added key 59, size=59
2020-12-03 03:26:47 keypool added key 60, size=60
2020-12-03 03:26:47 keypool added key 61, size=61
2020-12-03 03:26:47 keypool added key 62, size=62
2020-12-03 03:26:47 keypool added key 63, size=63
2020-12-03 03:26:47 keypool added key 64, size=64
2020-12-03 03:26:47 keypool added key 65, size=65
2020-12-03 03:26:47 keypool added key 66, size=66
2020-12-03 03:26:47 keypool added key 67, size=67
2020-12-03 03:26:47 keypool added key 68, size=68
2020-12-03 03:26:47 keypool added key 69, size=69
2020-12-03 03:26:47 keypool added key 70, size=70
2020-12-03 03:26:47 keypool added key 71, size=71
2020-12-03 03:26:47 keypool added key 72, size=72
2020-12-03 03:26:47 keypool added key 73, size=73
2020-12-03 03:26:47 keypool added key 74, size=74
2020-12-03 03:26:47 keypool added key 75, size=75
2020-12-03 03:26:47 keypool added key 76, size=76
2020-12-03 03:26:47 keypool added key 77, size=77
2020-12-03 03:26:47 keypool added key 78, size=78
2020-12-03 03:26:47 keypool added key 79, size=79
2020-12-03 03:26:47 keypool added key 80, size=80
2020-12-03 03:26:47 keypool added key 81, size=81
2020-12-03 03:26:47 keypool added key 82, size=82
2020-12-03 03:26:47 keypool added key 83, size=83
2020-12-03 03:26:47 keypool added key 84, size=84
2020-12-03 03:26:47 keypool added key 85, size=85
2020-12-03 03:26:47 keypool added key 86, size=86
2020-12-03 03:26:47 keypool added key 87, size=87
2020-12-03 03:26:47 keypool added key 88, size=88
2020-12-03 03:26:47 keypool added key 89, size=89
2020-12-03 03:26:47 keypool added key 90, size=90
2020-12-03 03:26:47 keypool added key 91, size=91
2020-12-03 03:26:47 keypool added key 92, size=92
2020-12-03 03:26:47 keypool added key 93, size=93
2020-12-03 03:26:47 keypool added key 94, size=94
2020-12-03 03:26:47 keypool added key 95, size=95
2020-12-03 03:26:47 keypool added key 96, size=96
2020-12-03 03:26:47 keypool added key 97, size=97
2020-12-03 03:26:47 keypool added key 98, size=98
2020-12-03 03:26:47 keypool added key 99, size=99
2020-12-03 03:26:48 keypool added key 100, size=100
2020-12-03 03:26:48 keypool added key 101, size=101
2020-12-03 03:26:48 keypool reserve 1
2020-12-03 03:26:48 keypool keep 1
2020-12-03 03:26:48  wallet                 1128ms
2020-12-03 03:26:48 setKeyPool.size() = 100
2020-12-03 03:26:48 mapWallet.size() = 0
2020-12-03 03:26:48 mapAddressBook.size() = 1
2020-12-03 03:26:48 UpdateTip: new best=0000000001534ef8893b025b9c1da67250285e35c9f76cae36a4904fdf72c591 height=0 version=0x00000001 log2_work=32.000022 tx=1 date='2011-04-29 21:44:07' progress=0.000000 cache=0.0MiB(0tx)
2020-12-03 03:26:48 mapBlockIndex.size() = 1
2020-12-03 03:26:48 nBestHeight = 0
2020-12-03 03:26:48 torcontrol thread start
2020-12-03 03:26:48 init message: Loading addresses...
2020-12-03 03:26:48 upnp thread start
2020-12-03 03:26:48 ERROR: Read: Failed to open file F:\ixcoin\peers.dat
2020-12-03 03:26:48 Invalid or missing peers.dat; recreating
2020-12-03 03:26:48 init message: Loading banlist...
2020-12-03 03:26:48 ERROR: Read: Failed to open file F:\ixcoin\banlist.dat
2020-12-03 03:26:48 Invalid or missing banlist.dat; recreating
2020-12-03 03:26:48 init message: Starting network threads...
2020-12-03 03:26:48 addcon thread start
2020-12-03 03:26:48 net thread start
2020-12-03 03:26:48 msghand thread start
2020-12-03 03:26:48 opencon thread start
2020-12-03 03:26:48 dnsseed thread start
2020-12-03 03:26:48 init message: Done loading
2020-12-03 03:26:48 Loading addresses from DNS seeds (could take a while)
2020-12-03 03:26:48 0 addresses found from DNS seeds
2020-12-03 03:26:48 dnsseed thread exit
2020-12-03 03:26:48 GUI: Platform customization: "windows"
2020-12-03 03:26:48 GUI: PaymentServer::LoadRootCAs: Loaded  51  root certificates
2020-12-03 03:26:51 UPnP: ExternalIPAddress = 75.84.57.42
2020-12-03 03:26:51 AddLocal(75.84.57.42:8337,3)
2020-12-03 03:26:52 UPnP Port Mapping successful.
2020-12-03 03:27:25 tor: Thread interrupt
2020-12-03 03:27:25 torcontrol thread exit
2020-12-03 03:27:25 scheduler thread interrupt
2020-12-03 03:27:25 msghand thread interrupt
2020-12-03 03:27:25 addcon thread interrupt
2020-12-03 03:27:25 net thread interrupt
2020-12-03 03:27:26 opencon thread interrupt
2020-12-03 03:27:26 Shutdown: In progress...
2020-12-03 03:27:26 UPNP_DeletePortMapping() returned: 0
2020-12-03 03:27:26 upnp thread interrupt
2020-12-03 03:27:26 Stop
2020-12-03 03:27:26 Shutdown: done
2020-12-03 03:28:06


[moderator's note: consecutive posts merged]
hero member
Activity: 1459
Merit: 973
tried to add node but didn't work



15:31:33

addnode=95.217.77.209


15:31:33

Method not found (code -32601)


Type %appdata% into your search and click on roaming>IXCOIN   then rename your wallet.dat to something like wallet.dat1234 so it regenerates a new empty wallet.dat when you close down the executables.Then try syncing up your wallet with zero balance.If it works or doesnt you still can go back and remove/delete the new wallet.dat and rename the one you renamed wallet.dat1234 or whatever back to just wallet.dat to have balance reappear.

Make a back up and save private key if you want using dumpprivkey command in console
newbie
Activity: 40
Merit: 0
tried to add node but didn't work



15:31:33

addnode=95.217.77.209


15:31:33

Method not found (code -32601)
jr. member
Activity: 52
Merit: 36
stops at 2 years 27 weeks `` no  connections ``` no block source available ````iXcoin Core version v0.14.1.0-2f7da53 (64-bit)

Maybe check if your antivirus isn't blocking them. If not, try adding nodes manually and wait some time to see if that works.

You can find a node list at: https://chainz.cryptoid.info/ixc/#!network

newbie
Activity: 40
Merit: 0
stops at 2 years 27 weeks `` no  connections ``` no block source available ````iXcoin Core version v0.14.1.0-2f7da53 (64-bit)
legendary
Activity: 3052
Merit: 1534
www.ixcoin.net
Please help starting my wallet its stuck - its 2 years behind , any help would be appreciated

Mine is 5 years behind.  Probably Rusted, wet and moldy.  What can I do?  :/

Like Cata said, we had a hard fork so update to new wallet. 

Catacata, it’s giving me anxiety cause I feel it means something but I haven’t been able to figure it out.  It used to all be simple Latin stuff now I gotta put in effort.  lol
member
Activity: 89
Merit: 61
Please help starting my wallet its stuck - its 2 years behind , any help would be appreciated

hard fork

https://github.com/IXCore/IXCoin/releases/tag/v0.14.1
jr. member
Activity: 52
Merit: 36
Please help starting my wallet its stuck - its 2 years behind , any help would be appreciated
What does the wallet say? What version are you running?

Are you getting connections?
newbie
Activity: 40
Merit: 0
Please help starting my wallet its stuck - its 2 years behind , any help would be appreciated
Pages:
Jump to: