Pages:
Author

Topic: [ANN] StrongHands - Hybrid PoS/PoW Min Stake - 30 days - page 53. (Read 79734 times)

sr. member
Activity: 358
Merit: 250
changing max_money would require a fork.
no idea if dev reads this or not ... hint hint

but if you have no luck extracting keys,
a possibility would be building a client with a larger max_money,
the transaction would not be legit on the network so should never get any confirms,
but the wallet should actually start up as the error seems to do with max_money having a tanty.

and then perhaps reindexing will fix it ..



alternatively,
the client should reject attempted transactions over max_money straight away..
this would help with future transactions.

I had no luck yet. I'll take you up on your offer because it's clear you are far more experienced with this than me. I'll send you the wallet.dat and we split the coins 50/50. How does that sound?

There are about 18 Billion SHND in there.  Grin



legendary
Activity: 1204
Merit: 1000
to your stations, man the pineapples!!!
changing max_money would require a fork.
no idea if dev reads this or not ... hint hint

but if you have no luck extracting keys,
a possibility would be building a client with a larger max_money,
the transaction would not be legit on the network so should never get any confirms,
but the wallet should actually start up as the error seems to do with max_money having a tanty.

and then perhaps reindexing will fix it ..



alternatively,
the client should reject attempted transactions over max_money straight away..
this would help with future transactions.
legendary
Activity: 1204
Merit: 1000
to your stations, man the pineapples!!!

there is still a couple of options,
1. get the privkeys and import into an empty wallet

there are at least some python tools that you could try, does involve having python installed.
https://github.com/gavinandresen/bitcointools

I like the idea of just trying to extract the private keys (and public keys), I have Python installed already. I looked at the tools on GitHub, which one would be best to use first? The fixwallet.py maybe? I didn't know that SHND would be compatible with BTC tools by the way.


just try them i guess :p
i used something once .. i cant remember what it was, maybe dbdump, but it was for not bitcoin but worked ok
so.. from memory i think th trick was making sure it looked in the correct directory,
i might have just made a fake bitcoin folder Smiley

have a look at the switches inside the script, they look interesting.
--notxes , Drops transactions from the old wallet, open Bitcoin with -rescan after this
for example


also this one to extract privkeys
https://github.com/jackjack-jj/pywallet
sr. member
Activity: 358
Merit: 250

Yeah, I tried sending 2.4 Billion in one go, so I clearly exceeded the 2 billion threshold, I wasn't aware of this limit until now.

I tried the rescan and the resync...   both still give me the same errors, the client just doesn't want to run anymore... I mean it starts loading and I see the splash screen but after about 20 seconds it crashes.

Not sure what else could be done at this point. Sad


there is still a couple of options,
1. get the privkeys and import into an empty wallet

there are at least some python tools that you could try, does involve having python installed.
https://github.com/gavinandresen/bitcointools

I like the idea of just trying to extract the private keys (and public keys), I have Python installed already. I looked at the tools on GitHub, which one would be best to use first? The fixwallet.py maybe? I didn't know that SHND would be compatible with BTC tools by the way.


legendary
Activity: 1204
Merit: 1000
to your stations, man the pineapples!!!

Yeah, I tried sending 2.4 Billion in one go, so I clearly exceeded the 2 billion threshold, I wasn't aware of this limit until now.

I tried the rescan and the resync...   both still give me the same errors, the client just doesn't want to run anymore... I mean it starts loading and I see the splash screen but after about 20 seconds it crashes.

Not sure what else could be done at this point. Sad


there is still a couple of options,
1. get the privkeys and import into an empty wallet

there are at least some python tools that you could try, does involve having python installed.
https://github.com/gavinandresen/bitcointools

2. mess with the code

a simple option would be to modify that coin limit and see what it does, and whether can get access to the unspent funds that way.
or adding the salvage wallet option and hopefully getting the keys that way.

..
if you can't get any further i'd be happy to see if i can do something along those two lines if you send me yo wallet Wink
i can modify the code in linux and just build daemons far simpler than a full qt.

i'm kind of interested in this as that max coin thing seems a bit problematic. probably been hit before on some other coin, but i've never seen it.
a simple enough fork (if necessary) to upgrade it
legendary
Activity: 1288
Merit: 1000
CRYPTO-CITY.COM 🌟 Communities
sr. member
Activity: 358
Merit: 250

I too have issues opening the wallet now, it crashed after I tried sending an amount to Cryptopia, some error about exceeding the limit, and since then I can't open it anymore. Suggestions are welcome.



curiousity prevails upon me to ask,
are they showing as pending at cryptopia?

even if they are, as long as they're not confirmed it should be still possible to send them in smaller batches,
double spending is real Wink



shame there isn't a working explorer as well :p



I checked Cryptopia but they're not showing up there as pending, so the client never was able to perform the 'send' task.

I wonder if it corrupted the wallet.dat file when I tried to send an amount that exceeded the limit?

sr. member
Activity: 358
Merit: 250
haha i see.

the figure generally touted around as coin supply is really the maximum coinage able to be handled in one tx (not sure of the finer details tbh)

in this case, probably a useful figure to be aware of ..
it's 2 billion coins
https://github.com/stronghands/stronghands/blob/master/src/main.h#L37

so i guess you should never have been able to actually send those coins. so it sounds like only your client that is having a problem, and the coins should be fine.

i'm unsure if a simple mod of that value would cause a fork or not.
i'm unclear if your fresh install involved resyncing or ..

so suggestions would be,

starting with a rescan

to rescan, open a command/terminal window,
drag and drop the qt.exe onto it, then add
-rescan

should look somethin like
c:\wherever\stronghands-qt.exe -rescan

,

or resyncing

a quicker way of resyncying would be to use yr current chain as a bootstrap.
basically you can rename the blk.xx file as bootstrap.dat and restart

my general approach is to duplicate the entire data directory so you have an as is copy to fall back on,
then rename blk0001.dat (or wahetever it's called) to bootstrap.dat
delete everything else except
wallet.dat
stronghands.conf
peers.dat

leaves you with 4 files .
bootstrap, wallet,conf and peers.

then try restarting,
it should then import the chain from the bootstrap rather than downloading,

from experience, it can take quite a while depending on number of tx and height of chain,
also it can stop before syncing fully with yon bootstrap,
if this happens you can rename
bootstrap.dat.old
back to
bootstrap.dat

and restart.

Yeah, I tried sending 2.4 Billion in one go, so I clearly exceeded the 2 billion threshold, I wasn't aware of this limit until now.

I tried the rescan and the resync...   both still give me the same errors, the client just doesn't want to run anymore... I mean it starts loading and I see the splash screen but after about 20 seconds it crashes.

Not sure what else could be done at this point. Sad





newbie
Activity: 154
Merit: 0

Stronghands?

What will they think of next?


can not be measured exact figure of their thinking.
legendary
Activity: 1204
Merit: 1000
to your stations, man the pineapples!!!

I too have issues opening the wallet now, it crashed after I tried sending an amount to Cryptopia, some error about exceeding the limit, and since then I can't open it anymore. Suggestions are welcome.



curiousity prevails upon me to ask,
are they showing as pending at cryptopia?

even if they are, as long as they're not confirmed it should be still possible to send them in smaller batches,
double spending is real Wink



shame there isn't a working explorer as well :p

legendary
Activity: 1204
Merit: 1000
to your stations, man the pineapples!!!
haha i see.

the figure generally touted around as coin supply is really the maximum coinage able to be handled in one tx (not sure of the finer details tbh)

in this case, probably a useful figure to be aware of ..
it's 2 billion coins
https://github.com/stronghands/stronghands/blob/master/src/main.h#L37

so i guess you should never have been able to actually send those coins. so it sounds like only your client that is having a problem, and the coins should be fine.

i'm unsure if a simple mod of that value would cause a fork or not.
i'm unclear if your fresh install involved resyncing or ..

so suggestions would be,

starting with a rescan

to rescan, open a command/terminal window,
drag and drop the qt.exe onto it, then add
-rescan

should look somethin like
c:\wherever\stronghands-qt.exe -rescan

,

or resyncing

a quicker way of resyncying would be to use yr current chain as a bootstrap.
basically you can rename the blk.xx file as bootstrap.dat and restart

my general approach is to duplicate the entire data directory so you have an as is copy to fall back on,
then rename blk0001.dat (or wahetever it's called) to bootstrap.dat
delete everything else except
wallet.dat
stronghands.conf
peers.dat

leaves you with 4 files .
bootstrap, wallet,conf and peers.

then try restarting,
it should then import the chain from the bootstrap rather than downloading,

from experience, it can take quite a while depending on number of tx and height of chain,
also it can stop before syncing fully with yon bootstrap,
if this happens you can rename
bootstrap.dat.old
back to
bootstrap.dat

and restart.
sr. member
Activity: 358
Merit: 250
At 5,7 billion SHND coins, my wallet doesnt want anymore startup. Any idea ? i think i did unlock the ultimate....


Greetz,

CYB

What do you mean by 'unlock the ultimate'?

I too have issues opening the wallet now, it crashed after I tried sending an amount to Cryptopia, some error about exceeding the limit, and since then I can't open it anymore. Suggestions are welcome.


You need to send less.
When you stake, the inputs often get smaller and smaller until you have kazillllllions of 3coin inputs, which ends up meaning if you want to send even 5k coins, that will take over 1600 inputs which is far bigger than the allowed tx size.

The easiest way around is to modify the source so staking combines all your inputs meaning you can send more coins in one go.
I could be persuaded to help with that Wink
It would involve modifying code base and recompiling so it would take me a wee bit o' time as it were.

(PM me Smiley)

Hi Pineapples,

Thanks for responding to my post regarding the SHND wallet issue. I'm just writing here so others in the SHND community may also benefit from the info or maybe there are others out there with suggestions regarding the issue as well.

Every month I combine the inputs, so I only have about 15 blocks that are staking each month.  The issue seems that after I executed a 'send' to Cryptopia, the amount I tried to send was apparently too big for the wallet to handle and it crashed. Since then I cannot even open the wallet anymore, it gives me an error message and then crashes again (see screenshots below). I tried fixing it with a fresh install of the wallet and copying the wallet.dat back in the right place, but that didn't work either. So it seems that the 'send' instruction is somehow inside the wallet.dat file, if that makes any sense? I'm just guessing.

Do you think modifying the SHND code base could help gain access to the coins again?  If you can solve the wallet issue I'll be happy to give you some of my coins for your effort. Thanks.








legendary
Activity: 1204
Merit: 1000
to your stations, man the pineapples!!!
At 5,7 billion SHND coins, my wallet doesnt want anymore startup. Any idea ? i think i did unlock the ultimate....


Greetz,

CYB

What do you mean by 'unlock the ultimate'?

I too have issues opening the wallet now, it crashed after I tried sending an amount to Cryptopia, some error about exceeding the limit, and since then I can't open it anymore. Suggestions are welcome.


You need to send less.
When you stake, the inputs often get smaller and smaller until you have kazillllllions of 3coin inputs, which ends up meaning if you want to send even 5k coins, that will take over 1600 inputs which is far bigger than the allowed tx size.

The easiest way around is to modify the source so staking combines all your inputs meaning you can send more coins in one go.
I could be persuaded to help with that Wink
It would involve modifying code base and recompiling so it would take me a wee bit o' time as it were.

(PM me Smiley)
full member
Activity: 173
Merit: 151
sr. member
Activity: 358
Merit: 250
At 5,7 billion SHND coins, my wallet doesnt want anymore startup. Any idea ? i think i did unlock the ultimate....


Greetz,

CYB

What do you mean by 'unlock the ultimate'?

I too have issues opening the wallet now, it crashed after I tried sending an amount to Cryptopia, some error about exceeding the limit, and since then I can't open it anymore. Suggestions are welcome.

member
Activity: 180
Merit: 20
If u are not strong enough to hold on to ur stash, deposit everything u own to the exchange and dump on ur moms buy orders. Now that there are no exchanges willing to list it, u can only dump and hope this will help to minimize ur losses. I have been monitoring this thread for a long time and can tell that I dont see any long-term potential here as of yet. If u do think u can get rich overnight by holding crypto u are none other but a loser.
newbie
Activity: 5
Merit: 0
At 5,7 billion SHND coins, my wallet doesnt want anymore startup. Any idea ? i think i did unlock the ultimate....


Greetz,

CYB
legendary
Activity: 1288
Merit: 1000
CRYPTO-CITY.COM 🌟 Communities
I'm market making SHND on Cryptopia.  Grin
hero member
Activity: 728
Merit: 500
This is a great POS coin. It stakes wonderfully, it ain't useful for much else but it sure is fun to see my stash double each month. Smiley

Compounding for the win!  Grin
newbie
Activity: 14
Merit: 0
Trade [SHND] StrongHands  with MegaCrypton.com Secured Crypto trade Platform.

BTC/SHND: https://live.megacrypton.com/market/122
LTC/SHND: https://live.megacrypton.com/market/123
USD/SHND: https://live.megacrypton.com/market/124
DOGE/SHND: https://live.megacrypton.com/market/125


Megacrypton SHND WebWallet: https://live.megacrypton.com/login


SIGNUP FOR MEGACRYPTON: https://live.megacrypton.com/user/register


Twitter: https://twitter.com/megacrypton
Facebook: https://www.facebook.com/Megacrypton-1048724951862655


Disclaimer:MegaCrypton is a P2P exchange Platform, Trade price depends on user,
we do not control or set price Trade More than 200+ Coins pair Host ICO/IPO/Crowdsale*Provide White Label
Partnership Developments of Altcoins,Blockexplorer,Node, Faucet
Pages:
Jump to: