Jump to content

Search the Community

Showing results for tags 'help'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • News & Announcements
    • BlockForums Announcements
    • Denarius Announcements
    • Kronos Wallet Announcements
    • The Crypto News Feed
  • Cryptocurrency Discussions
    • Cryptocurrencies
    • Altcoin Announcements
    • General Discussion
    • Tutorials & Help
  • Denarius Discussions
    • General Discussion
    • Tutorials & Help
    • Marketing & PR
    • Development
    • Mining & Staking
    • Trading & Exchanges
    • Marketplace
  • Programming & Design
    • Development QA
    • Design QA
  • Gaming
    • Bot Downloads & Discussion
    • Gaming Discussion
  • Classifieds
    • Buy Sell and Trade
  • Other Discussions
    • Element 115
    • The Lounge
    • Hardware & IoT
    • Tutorials & Guides
    • Domains & Hosting

Product Groups

There are no results to display.

Calendars

  • Community Calendar

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


About Me


BTC Address

Found 3 results

  1. How to easily swap or change endianness in Javascript, NodeJS, etc. with one simple function! changeEndianness() const changeEndianness = (string) => { const result = []; let len = string.length - 2; while (len >= 0) { result.push(string.substr(len, 2)); len -= 2; } return result.join(''); } You can then use this function with any string to convert its endianness Example of using function: var yourstringvar = 'Your string goes here to swap endianness'; var newendian = changeEndianness(yourstringvar); console.log('Your newly swapped endian string', newendian);
  2. Hi. My wallet stopped syncing a few days ago on block 8001003 and i have no idea why. The worst part is that i have sent some coins to the wallet after this block so they have not arrived. can anyone help? bearing in mind i'm not a programmer and have limited IT skills. I literally need a step by step idiots guide on how to fix this. I'm running v2.5.2.0 This is the debug log file. ERROR: AcceptBlock() : rejected by hardened checkpoint lock-in at 800104 ERROR: AcceptBlock() : rejected by hardened checkpoint lock-in at 800104 ERROR: ProcessBlock() : AcceptBlock FAILED Misbehaving: 134.249.127.120:60418 (0 -> 100) DISCONNECTING disconnecting node 134.249.127.120:60418 connection from 134.249.127.120:57692 dropped (banned) ERROR: FetchInputs() : 324bfd3d58 mempool Tx prev not found 38d1d94603 stored orphan tx 324bfd3d58 (mapsz 67) ERROR: AcceptBlock() : rejected by hardened checkpoint lock-in at 800104 ERROR: ProcessBlock() : AcceptBlock FAILED Misbehaving: 188.223.84.148:33339 (0 -> 100) DISCONNECTING disconnecting node 188.223.84.148:33339 net: trying connection 54.39.50.173:33339 lastseen=127.6hrs net: connected 54.39.50.173:33339 send version message: version 25213, blocks=800103, us=90.196.98.182:33339, them=54.39.50.173:33339, peer=54.39.50.173:33339 socket closed disconnecting node 54.39.50.173:33339 net: trying connection 37.112.127.165:33339 lastseen=127.6hrs connection timeout net: trying connection 54.36.45.67:33339 lastseen=127.5hrs connection timeout net: trying connection 105.8.7.193:33339 lastseen=127.6hrs connection timeout net: trying connection 5.9.98.144:33339 lastseen=127.2hrs accepted connection 89.216.114.157:55945 send version message: version 25213, blocks=800103, us=90.196.98.182:33339, them=89.216.114.157:55945, peer=89.216.114.157:55945 receive version message: version 21213, blocks=887979, us=90.196.98.182:33339, them=89.216.114.157:33339, peer=89.216.114.157:55945 net: received verack from peer version 21213 (recvVersion: 21213) at 89.216.114.157:55945 connection timeout net: trying connection 87.123.33.168:33339 lastseen=127.6hrs ERROR: AcceptBlock() : rejected by hardened checkpoint lock-in at 800104 ERROR: ProcessBlock() : AcceptBlock FAILED Misbehaving: 173.24.196.192:33339 (0 -> 100) DISCONNECTING disconnecting node 173.24.196.192:33339 connection timeout net: trying connection 103.232.209.140:33339 lastseen=127.6hrs net: connected 103.232.209.140:33339 send version message: version 25213, blocks=800103, us=90.196.98.182:33339, them=103.232.209.140:33339, peer=103.232.209.140:33339 socket closed disconnecting node 103.232.209.140:33339 net: trying connection 39.119.94.221:33339 lastseen=127.5hrs socket recv error 10054
  3. Hey guys, I want to compile the windows wallet myself so i'm 100% sure that the code that is shown on github is also the actual code in the wallet and that there isn't any malicious stuff added in there. The only issue is, i cant find any guide or tutorial on how to do this. Could anyone help me building the denarius windows qt wallet from the source code on github? https://github.com/carsenk/denarius I've tried to follow the https://github.com/carsenk/denarius/blob/master/doc/readme-qt.rst windows part, but i think its outdated by like 3-5 years and i cant get that to work either.. Any help on this would be really appreciated, doesn't matter if its a cross compile from linux to windows, or straight away on windows.
×
×
  • Create New...