Bitcoin Forum
September 30, 2025, 07:08:16 AM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: EASYMASTERNODES.ONLINE on: July 05, 2018, 07:13:55 PM
Really looking forward to this project. It will finally setting up masternodes easy without the need of an account on lots of exchanges.
2  Alternate cryptocurrencies / Tokens (Altcoins) / Re: █【ANN】【ICO】█【PRE-SALE】 🌟 【SOLD OUT】 ██ 🌟 BLOCKLANCER ██ JOIN GIG ECONOMY BOOM on: September 19, 2017, 09:59:31 AM
Do you have any indication on when the alfa testing will start?
3  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] HOWL | Mobile Social Application | No ICO | AIRDROP on: September 10, 2017, 06:38:06 PM
Email send i will keep an eye on this
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]Gheez||Altcoin services platform powered by crypto[AIRDROP]crowdfund on: August 03, 2017, 08:28:29 PM
Looks promising will be following to see where this will go
5  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] DALECOIN TOKEN on: August 03, 2017, 08:08:17 PM
Joined the airdrop lets see what this coin will bring.
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN: Bitcoin Cash Collector Coin - Scrypt - AIR DROP AND FREE BTC GIVEWAYS!!!! on: August 03, 2017, 08:01:01 PM
Voted thats bad luck with your computer. happy that you fixed it.
7  Bitcoin / Project Development / Re: [ANNOUNCE] Abe 0.7: Open Source Block Explorer Knockoff on: August 04, 2014, 09:38:24 PM
can someone help me i am trying to set up an block explorer for VirtaCoin.
It is just to get started into this and i saw they didn't have one so i thought give it a go.
But the problem is i keep only seeing the genesis block and nothing more.
Can someone here maybe tell me if my configuration is wrong.
or other things i have to pay attention to
i pulled the head revision from github. also i tried doing it with 0.7.2. but that had no success at all.

abe.conf


Code:
dbtype MySQLdb
    connect-args {"user":"user","db":"dbname","passwd":"pass"}
    upgrade
    port 2900
        host 127.0.0.1
binary-type binary
datadir += [{
        "dirname": "/root/.virtacoin",
        "chain": "VirtaCoin",
        "address_version":"\u0000",
         "policy":"LtcScryptChain",
        "conf": "virtacoin.conf"
      }]

Abe/DataStore.py

 
Code:
   {"chain":"VirtaCoin","policy":"LtcScryptChain",
     "code3":"VTA", "address_version":"\x00", "magic":"\xbe\xd0\xc8\xd1"},


if someone can tell me if something is wrong please.

I had to do a lot to get it working properly, the cheap and easy fix to get it working once you get at as far as you have is this in Datastore.py

Code:
 -                    if chain.block_header_hash(chain.serialize_block_header(
 -                            block)) != hash:
 -                        raise InvalidBlock('block hash mismatch')
 +                   # if chain.block_header_hash(chain.serialize_block_header(
 +                   #         block)) != hash:
 +                   #     raise InvalidBlock('block hash mismatch')

Thanks i will try it.
it didn't work without rebuilding the database so i am trying that now

okay strangely now it is at block_tx 45030 13903 and the coin only has 44974 blocks. How is this possible?
(and yes i triple checked) and it is still importing more
orphans are imported too but "removed" (not really removed, they still exist AFAIK) so the number of blocks is higher. block_tx <block overall count> <transactions overall count>.
same of course applies to transactions which didnt get accepted due to orphan.

okay thank you now wait and hope it works Cheesy
8  Bitcoin / Project Development / Re: [ANNOUNCE] Abe 0.7: Open Source Block Explorer Knockoff on: August 04, 2014, 07:19:04 PM
can someone help me i am trying to set up an block explorer for VirtaCoin.
It is just to get started into this and i saw they didn't have one so i thought give it a go.
But the problem is i keep only seeing the genesis block and nothing more.
Can someone here maybe tell me if my configuration is wrong.
or other things i have to pay attention to
i pulled the head revision from github. also i tried doing it with 0.7.2. but that had no success at all.

abe.conf


Code:
dbtype MySQLdb
    connect-args {"user":"user","db":"dbname","passwd":"pass"}
    upgrade
    port 2900
        host 127.0.0.1
binary-type binary
datadir += [{
        "dirname": "/root/.virtacoin",
        "chain": "VirtaCoin",
        "address_version":"\u0000",
         "policy":"LtcScryptChain",
        "conf": "virtacoin.conf"
      }]

Abe/DataStore.py

 
Code:
   {"chain":"VirtaCoin","policy":"LtcScryptChain",
     "code3":"VTA", "address_version":"\x00", "magic":"\xbe\xd0\xc8\xd1"},


if someone can tell me if something is wrong please.

I had to do a lot to get it working properly, the cheap and easy fix to get it working once you get at as far as you have is this in Datastore.py

Code:
 -                    if chain.block_header_hash(chain.serialize_block_header(
 -                            block)) != hash:
 -                        raise InvalidBlock('block hash mismatch')
 +                   # if chain.block_header_hash(chain.serialize_block_header(
 +                   #         block)) != hash:
 +                   #     raise InvalidBlock('block hash mismatch')

Thanks i will try it.
it didn't work without rebuilding the database so i am trying that now

okay strangely now it is at block_tx 45030 13903 and the coin only has 44974 blocks. How is this possible?
(and yes i triple checked) and it is still importing more
9  Bitcoin / Project Development / Re: [ANNOUNCE] Abe 0.7: Open Source Block Explorer Knockoff on: August 04, 2014, 08:00:15 AM
can someone help me i am trying to set up an block explorer for VirtaCoin.
It is just to get started into this and i saw they didn't have one so i thought give it a go.
But the problem is i keep only seeing the genesis block and nothing more.
Can someone here maybe tell me if my configuration is wrong.
or other things i have to pay attention to
i pulled the head revision from github. also i tried doing it with 0.7.2. but that had no success at all.

abe.conf


Code:
dbtype MySQLdb
    connect-args {"user":"user","db":"dbname","passwd":"pass"}
    upgrade
    port 2900
        host 127.0.0.1
binary-type binary
datadir += [{
        "dirname": "/root/.virtacoin",
        "chain": "VirtaCoin",
        "address_version":"\u0000",
         "policy":"LtcScryptChain",
        "conf": "virtacoin.conf"
      }]

Abe/DataStore.py

 
Code:
   {"chain":"VirtaCoin","policy":"LtcScryptChain",
     "code3":"VTA", "address_version":"\x00", "magic":"\xbe\xd0\xc8\xd1"},


if someone can tell me if something is wrong please.

I had to do a lot to get it working properly, the cheap and easy fix to get it working once you get at as far as you have is this in Datastore.py

Code:
 -                    if chain.block_header_hash(chain.serialize_block_header(
 -                            block)) != hash:
 -                        raise InvalidBlock('block hash mismatch')
 +                   # if chain.block_header_hash(chain.serialize_block_header(
 +                   #         block)) != hash:
 +                   #     raise InvalidBlock('block hash mismatch')

Thanks i will try it.
it didn't work without rebuilding the database so i am trying that now
10  Bitcoin / Project Development / Re: [ANNOUNCE] Abe 0.7: Open Source Block Explorer Knockoff on: August 03, 2014, 07:47:03 PM
can someone help me i am trying to set up an block explorer for VirtaCoin.
It is just to get started into this and i saw they didn't have one so i thought give it a go.
But the problem is i keep only seeing the genesis block and nothing more.
Can someone here maybe tell me if my configuration is wrong.
or other things i have to pay attention to
i pulled the head revision from github. also i tried doing it with 0.7.2. but that had no success at all.

abe.conf


Code:
dbtype MySQLdb
    connect-args {"user":"user","db":"dbname","passwd":"pass"}
    upgrade
    port 2900
        host 127.0.0.1
binary-type binary
datadir += [{
        "dirname": "/root/.virtacoin",
        "chain": "VirtaCoin",
        "address_version":"\u0000",
         "policy":"LtcScryptChain",
        "conf": "virtacoin.conf"
      }]

Abe/DataStore.py

 
Code:
   {"chain":"VirtaCoin","policy":"LtcScryptChain",
     "code3":"VTA", "address_version":"\x00", "magic":"\xbe\xd0\xc8\xd1"},


if someone can tell me if something is wrong please.
11  Other / Beginners & Help / Re: Abe installing on: August 03, 2014, 03:01:18 PM
no my vps automatically made the root thing i just wanted to test it for now so did not bother setting everything up with separate users for now until i can deploy it for real. But i run it as root and the blocks get read only they do not show up and i read it is the configuration in some threads but nowhere what was the problem with the conf.
12  Other / Beginners & Help / Re: Abe installing on: August 03, 2014, 02:54:04 PM
I have no experience with this, but you could check the basics,

Do you have MySQL server running?
Is the username and password correct?


yes it will import everything (it at least looks like it and database grows fast in size when running) but after 1 day running when i access the site it only shows the genesis block.
13  Other / Beginners & Help / Abe installing on: August 03, 2014, 02:41:39 PM
Hello i am trying to setup abe for a coin named VirtaCoin.
But the problem is i keep only seeing the genesis block and nothing more.
Can someone here maybe tell me if my configuration is wrong.

abe.conf

Code:
dbtype MySQLdb
    connect-args {"user":"user","db":"dbname","passwd":"pass"}
    upgrade
    port 2900
        host 127.0.0.1
binary-type binary
datadir += [{
        "dirname": "/root/.virtacoin",
        "chain": "VirtaCoin",
        "address_version":"\u0000",
         "policy":"LtcScryptChain",
        "conf": "virtacoin.conf"
      }]

Abe/DataStore.py

Code:
    {"chain":"VirtaCoin","policy":"LtcScryptChain",
     "code3":"VTA", "address_version":"\x00", "magic":"\xbe\xd0\xc8\xd1"},


if someone can tell me if something is wrong please.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!