Bitcoin Forum
April 12, 2026, 09:55:58 AM *
News: Latest Bitcoin Core release: 30.2 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2] 3 4 5 »
21  Alternate cryptocurrencies / Altcoin Discussion / Re: Coin Devs??? Can you help a fellow Dev Out??? Just a Question on: August 28, 2014, 09:18:49 PM
2014-08-25 08:29:13 DevcoinMiner:
2014-08-25 08:29:13 proof-of-work found 
  hash: 0000000048ee719e56e730184e293bccfb369959195ce18982399515d7c4d8f9 
target: 0000019726000000000000000000000000000000000000000000000000000000
2014-08-25 08:29:13 CBlock(hash=0000000048ee719e56e730184e293bccfb369959195ce18982399515d7c4d8f9, ver=327681, hashPrevBlock=0000000017fa717a610764dc771e4a6bc6f4f07de545d232a0a910e95d491b95, hashMerkleRoot=dab5d829d5f1b8ee5de7c7da8000089312381038c8194f0b9c1787b7ccce9929, nTime=1408955344, nBits=1e019726, nNonce=1386869691, vtx=1)
2014-08-25 08:29:13   CTransaction(hash=dab5d829d5, ver=1, vin.size=1, vout.size=1, nLockTime=0)
    CTxIn(COutPoint(0000000000, 4294967295), coinbase 01350101062f503253482f)
    CTxOut(nValue=1.00000000, scriptPubKey=)
2014-08-25 08:29:13   vMerkleTree: dab5d829d5f1b8ee5de7c7da8000089312381038c8194f0b9c1787b7ccce9929
2014-08-25 08:29:13 generated 1.00
I think, you send the block reward to an invalid address (scriptPubKey is empty). Examine the transaction in debug console:
Code:
gettransaction dab5d829d5f1b8ee5de7c7da8000089312381038c8194f0b9c1787b7ccce9929

you sould see at the end something like this:
Quote
....
    "vout" : [
        {
            "value" : 50000.00000000,
            "n" : 0,
            "scriptPubKey" : {
                "asm" : "OP_DUP OP_HASH160 f048507208cdddb41b5c89e035542d594aa10202 OP_EQUALVERIFY OP_CHECKSIG",
                "hex" : "76a914f048507208cdddb41b5c89e035542d594aa1020288ac",
                "reqSigs" : 1,
                "type" : "pubkeyhash",
                "addresses" : [
                    "BqhBQLxQSh6CnmP7pzZu9q7Mr1veRxE4r8"
                ]
            }
        }
...

I think you may be onto something. I tried the Version adjustment last night. I will spend today trying to work this out.

This is what gettransaction gives me.

i3lome@i3lome-A740GM-M:~/vikingcoin/src$ ./vikingcoind -testnet gettransaction 81572fda124605376e67bed3df05726133246e03ee619f718f15a5d64df23fbf
error: {"code":-5,"message":"Invalid or non-wallet transaction id"}
22  Alternate cryptocurrencies / Altcoin Discussion / Re: Coin Devs??? Can you help a fellow Dev Out??? Just a Question on: August 28, 2014, 02:15:27 AM
You need to decide if you're on version 2 blocks or version 2 transactions.

Code:
bool IsStandardTx(const CTransaction& tx, string& reason)
{
    AssertLockHeld(cs_main);
    if (tx.nVersion > CTransaction::CURRENT_VERSION || tx.nVersion < 2) {
        reason = "version";
        return false;
    }

CTransaction::CURRENT_VERSION = 1; so the above is always false.

tip, you're on version 1 transactions so change all code that looks for tx.nVersion equaling 2 back to 1.

That's the type of information I was looking for. Thank you

Im not great with explaining things but you turned on my light bulb. The original chain produces V1 blocks, while the upgrade and Merge Mining produces V2 blocks. I started testnet on the New Client which produces V2 blocks from the get go.

Seems what I need to do its, take the Testnet from Client 1 that's been established to a point then, implement MM chain allowing v2 to be accepted from that point forward.


The blocks are fine, it's the transactions that are being rejected. You have V2 blocks and V1 transactions - well you should, you currently have both but have code like the above that rejects V1 transactions, fix that and it'll work. Especially the above line.

Im on my way home now, I give it a go when I get in. Figured it would be something simple just not that obvious. lol. 
23  Alternate cryptocurrencies / Altcoin Discussion / Re: Coin Devs??? Can you help a fellow Dev Out??? Just a Question on: August 28, 2014, 01:54:08 AM
You need to decide if you're on version 2 blocks or version 2 transactions.

Code:
bool IsStandardTx(const CTransaction& tx, string& reason)
{
    AssertLockHeld(cs_main);
    if (tx.nVersion > CTransaction::CURRENT_VERSION || tx.nVersion < 2) {
        reason = "version";
        return false;
    }

CTransaction::CURRENT_VERSION = 1; so the above is always false.

tip, you're on version 1 transactions so change all code that looks for tx.nVersion equaling 2 back to 1.

That's the type of information I was looking for. Thank you

Im not great with explaining things but you turned on my light bulb. The original chain produces V1 blocks, while the upgrade and Merge Mining produces V2 blocks. I started testnet on the New Client which produces V2 blocks from the get go.

Seems what I need to do its, take the Testnet from Client 1 that's been established to a point then, implement MM chain allowing v2 to be accepted from that point forward.


24  Alternate cryptocurrencies / Altcoin Discussion / Re: Coin Devs??? Can you help a fellow Dev Out??? Just a Question on: August 27, 2014, 11:55:40 PM
Sounds like some of the code in the forms or overviewpage is broken. If I'm understanding correctly that you are finding blocks but they just aren't showing up in the QT? What does 'getinfo' return?
You are correct. Blocks are found with a Value but is not credited to the wallet.


I don't have a Copy of "getinfo" saved but,

Balance stays at 0, while block count and difficulty adjusts as it should.


I will look threw the forms to see if I can find the problem. Im sure it something small or out of place.  I appreciate your input
25  Alternate cryptocurrencies / Altcoin Discussion / Re: Coin Devs??? Can you help a fellow Dev Out??? Just a Question on: August 27, 2014, 11:29:39 PM
Yes, the problem is with the Viking Coin upgrade that Im working on. Im the dev of Viking Coin, this whole post is asking for assistance on finding the root of the problem. Im a dev asking for fellow dev assistance Undecided


Please. Enough. If you can't do this how are you going to develop a coin worthwhile to the current environment. Just quit now or learn to develop.
Satoshi's vision is being raped just so people like you can make clone shitcoins to hock for ICO or whatever BTC profit you can get.
And you're not a fellow developer.

Wow, so much vague hostility. ICO? no clue what that is but IPO defiantly not. Quit now and learn to develop?  Isnt Developing evolving a code to meet the need of its purpose?  In the developing process, new things are learned and applied so it will develop over a period of time. right?

Im not you average dev, Im not afraid to ask for assistance on an issue someone else may have experienced. If no assistance is around it just takes a little longer to work things out.  I have no secrets, I hold no premine and hype is not part of Viking Coin. 3 months old now, we have outlive several coins.

Ahmed_bodi, I thank you for the kind words and your efforts with Viking Coin. Viking wont be able to overlooked too much longer. The slow forward pace just allows us to pick up momentum.   
26  Alternate cryptocurrencies / Altcoin Discussion / Re: Coin Devs??? Can you help a fellow Dev Out??? Just a Question on: August 27, 2014, 07:09:20 AM
Yes, the problem is with the Viking Coin upgrade that Im working on. Im the dev of Viking Coin, this whole post is asking for assistance on finding the root of the problem. Im a dev asking for fellow dev assistance Undecided
27  Alternate cryptocurrencies / Altcoin Discussion / Re: Coin Devs??? Can you help a fellow Dev Out??? Just a Question on: August 27, 2014, 02:11:14 AM
No I have not tried another coins testnet? What would I learn from that?
28  Alternate cryptocurrencies / Altcoin Discussion / Re: Coin Devs??? Can you help a fellow Dev Out??? Just a Question on: August 26, 2014, 08:37:41 AM
Solo mining- 3- 333mhs Usb Block Eruptors.

Setgenerate= true, same result.

Upgrade to 0.9.2 + Merge Mine patch.

Auxpow, isn't active at this time. Still on original testnet chain.



The source is at
 https://github.com/i3lome/vikingcoin
Branch 0.9.2

The Master is the Original Client that is still being mined. Well, Except the Update today to Disable KGW
29  Alternate cryptocurrencies / Altcoin Discussion / Re: Coin Devs??? Can you help a fellow Dev Out??? Just a Question on: August 25, 2014, 09:07:35 PM
Im may have not worded this correctly.

I realize the Genesis block gives 0 reward, I also understand the Confirmations for coin to move from Unconfirmed to confirmed coin balace.

This issue is, the Block finder does not receive ANY reward at all. No unconfirmed coins and no "Mined" transaction in the TX list.

Blocks are being accepted, Diff is adjusting up.  Found blocks do have a Value but is not being awarded to finder.

Debug.log

2014-08-25 08:29:13 DevcoinMiner:
2014-08-25 08:29:13 proof-of-work found 
  hash: 0000000048ee719e56e730184e293bccfb369959195ce18982399515d7c4d8f9 
target: 0000019726000000000000000000000000000000000000000000000000000000
2014-08-25 08:29:13 CBlock(hash=0000000048ee719e56e730184e293bccfb369959195ce18982399515d7c4d8f9, ver=327681, hashPrevBlock=0000000017fa717a610764dc771e4a6bc6f4f07de545d232a0a910e95d491b95, hashMerkleRoot=dab5d829d5f1b8ee5de7c7da8000089312381038c8194f0b9c1787b7ccce9929, nTime=1408955344, nBits=1e019726, nNonce=1386869691, vtx=1)
2014-08-25 08:29:13   CTransaction(hash=dab5d829d5, ver=1, vin.size=1, vout.size=1, nLockTime=0)
    CTxIn(COutPoint(0000000000, 4294967295), coinbase 01350101062f503253482f)
    CTxOut(nValue=1.00000000, scriptPubKey=)
2014-08-25 08:29:13   vMerkleTree: dab5d829d5f1b8ee5de7c7da8000089312381038c8194f0b9c1787b7ccce9929
2014-08-25 08:29:13 generated 1.00
30  Alternate cryptocurrencies / Altcoin Discussion / Coin Devs??? Can you help a fellow Dev Out??? Just a Question on: August 25, 2014, 09:57:08 AM
Im working on an upgrade, everything apprears to work fine. Except that Block finding client recieves 0 reward while test solo mining. Debug log shows the Block value and its accepted, but transactions and balance remain at 0.

Can someone point me in the right area to look or some ideas to why  the block shows reward but none is given.*
31  Alternate cryptocurrencies / Altcoin Discussion / Re: Gitian Build Genius around? Im having a small issue. on: August 18, 2014, 09:29:32 AM
I got if figured out. Cool
32  Alternate cryptocurrencies / Altcoin Discussion / Gitian Build Genius around? Im having a small issue. on: August 18, 2014, 02:43:32 AM
Code:
test_main.cpp:1:0: warning: -fPIC ignored for target (all code is position independent) [enabled by default]uritests.cpp:1:0: warning: -fPIC ignored for target (all code is position independent) [enabled by default]

test_main.cpp:2:35: fatal error: src/vikingcoin-config.h: No such file or directory
compilation terminated.
make[6]: *** [test_vikingcoin_qt-test_main.o] Error 1
make[6]: *** Waiting for unfinished jobs....
make[6]: Leaving directory `/home/ubuntu/build32/distsrc/src/qt/test'
make[5]: *** [all] Error 2
make[5]: Leaving directory `/home/ubuntu/build32/distsrc/src/qt/test'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/home/ubuntu/build32/distsrc/src/qt'
make[3]: *** [all] Error 2
make[3]: Leaving directory `/home/ubuntu/build32/distsrc/src/qt'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/ubuntu/build32/distsrc/src'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/ubuntu/build32/distsrc/src'
make: *** [all-recursive] Error 1

Is there a way not to build the Viking Coin_QT test and create the Release only. I have tried everything to get this compiled correctly.

Config seems to place it in the src dir.
ac_config_headers="$ac_config_headers src/vikingcoin-config.h"

Can anyone point me in the right direction? 
33  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SSD] SonicScrewdriver [PoW/PoS] Sha256.[Tor Included]BITTREX CCEX and Bleutrade on: August 13, 2014, 11:57:00 PM
Uh oh my client is Staking, not PoS block yet.

You are aware that it can take some time for you to generate a PoS block depending on many different factors. I know for a fact that stake works and the microstake that affected some ppc clones does not infact affect SSD.

I was just posting a status. PoS reward was expected in 4 days. Receive PoS block in 4 hours woooo. Looking good fellas
34  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SSD] SonicScrewdriver [PoW/PoS] Sha256.[Tor Included]BITTREX CCEX and Bleutrade on: August 13, 2014, 09:27:31 PM
Uh oh my client is Staking, not PoS block yet.
35  Alternate cryptocurrencies / Altcoin Discussion / Re: If we don't know about your coins, it's impossible to add them... on: August 11, 2014, 09:24:30 PM
Viking Coin - Vik
sha256
5,000 Coins
Low Reward.

block.thevikingcoin.com - Explorer
https://github.com/i3lome/vikingcoin  - Source
thevikingcoin.com -site

We are implementing merge mining and have a Vendor right outside Ft Campbell, Ky. We would love for Viking Coin to be added to Casheer, Im sure the soldiers will bring it around the world.
36  Alternate cryptocurrencies / Altcoin Discussion / Re: Feel Bad for Scamcoin Victims? Nope Not at all. on: August 10, 2014, 12:28:46 AM
First Viking Coin Address gets free Viking Coin. Cool

We will keep moving forward, Remember us. You will see us on a regular basis
37  Alternate cryptocurrencies / Altcoin Discussion / Re: Feel Bad for Scamcoin Victims? Nope Not at all. on: August 09, 2014, 06:00:52 AM
Viking Coin was designed strictly for trading purposes,  5,000 Coin and low reward, to help maintain a stable value. Low rewards in place to discourage dumpage, since it will not be possible to mine and replace the coins you sold.

Viking Coin will adapt and be implemented where needed. We already have vendor ready to accept Viking Coin as payment. We just need to get on a major exchange, Cryptsy, Bittrex or Poloniex.

Viking Coin- Will be accepted at DropJawCustom's providing Automotive/Motorcycle Custom Paint and airbrushing.


Merged Mining  in the works to maintain network security and block times, halving starts in ~40k blocks. Now is the time to mine and acquire whole Viking Coins.



you bashed coins for a specific reason (lack of real uses)
then you take this masked advertisement topic for Viking Coin and promote it as a coin with out any real uses (a trading only coin of sorts) LOL
you are funny ahahha

I would consider transferring funds from exchange to exchange quicker than bitcoin useful. I would also think paying to have my motorcycle painted with Viking would also be useful.

Can you give me an example of a specific coin and use, for reference. Please don't give me a "If you don't know by know.....stuff"

For my bashing, I didn't want to start listing coins. It was more of a generality and loss of descriptors, coins with no dev, premine to shit hit an exchange and die after a week.

oh, and you looked  Kiss
38  Alternate cryptocurrencies / Altcoin Discussion / Re: Feel Bad for Scamcoin Victims? Nope Not at all. on: August 09, 2014, 04:48:53 AM
Take another drink bud, it will all come clear. lol

Glad to know Facebook gauges your view on life. When you put in real work, facebook is the last thing on their minds. DJC, is in the 2nd Fastest Growing city in America. Use the Google Box- Right next to Ft Campbell, the local military base, 60 Mile from Nashville is the awesome place where magic happens.

I do understand your doubt. Viking Coin didn't come out with uber promises and hype. We didn't launch with paid or 3rd party development/compilation. The Massive Premine of 0 Viking Coin, only 4 pools open 0 second of launch. Me mining on my Ant S1 to supply funds for giveaways, while I could be makin 0.005 BTC of massive cryptofunds is total bullsh*t.

The whole idea of Viking Coin come from BTC's inconsistent block times. Sometimes when new coin show up on Bittrex I try to get BTC deposited before prices inflate. At times you can be waiting 45min to an hour for 1 confirmation. A lot happens in 1 hour in crypto. So Viking was born, 5,000 Coin, enough that can spread through exchanges so funds can be moved to or from any exchange. Viking completely confirms before Bitcoin even on Bitcoins good day. Meaning you have your funds faster and can catch the best prices on trades you want.  I set Rewards to 0.01 Vik,halving in ~40k blocks, So mining and dumping is not going to be worth it. Ahmed_Bodi is bringing Merged Mining to Viking Coin, we have a Merge Mining Pool confirmed for addition. This will bring the diff up similar to BTC and NMC while providing constant blocks without worry of a stalled network. KGW is in effect for now to maintain constant confirmations.

Viking Coin is my Contribution to Crypto, I only hold coins I mined on my Antminer S1 and I steadily hand them out. People sketch out if the dev is standing to make a shitton of money. We are 2 months strong and gaining traction daily.

http://www.cryptocoinrank.com/vikingcoin

Yes, Viking Coins function is based on improved trading. The code is sound, no issues since launch and it does what its supposed to.

As for ribbing me about the Custom Paint Jobs from DropJaw. Brother if you can tell me a way to get a physical business that uses paid products on a custom per customer basis to accept Crypto,please do. Lol especially some bikers. "Why would I take you magic internet money that you make on your computer?" It took a while but they are onboard.

All I can say is Im around daily. With or without you we will continue forward. I hope its with you.
39  Alternate cryptocurrencies / Altcoin Discussion / Re: Feel Bad for Scamcoin Victims? Nope Not at all. on: August 09, 2014, 03:35:20 AM
DropJawCustom's of Tn buddy.  Smiley



40  Alternate cryptocurrencies / Altcoin Discussion / Re: Feel Bad for Scamcoin Victims? Nope Not at all. on: August 09, 2014, 03:08:36 AM
we all get scammed one way or another in life, nope i don't feel sympathy for you at all no matter how big/worse it'll come for you, nobody should help you  Tongue @op
Um ok.  Wasn't asking for help. Just passing out the Preperation H, all these butt hurt folks whinning about scamcoins. I will help you apply some, I will use my middle finger. Cool
Pages: « 1 [2] 3 4 5 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!