Bitcoin Forum
May 22, 2024, 12:59:38 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 [24] 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 ... 107 »
  Print  
Author Topic: [ANN] RazorLove Cryptocurrency Services - DBL, CENT, & FOO/BAR Updates  (Read 153351 times)
The_Catman (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


Captain Jack Fenderson


View Profile WWW
January 03, 2014, 06:00:39 AM
 #461

WHy would cryptsy use a buggy ridiculously overinflated coin as the basis of a 4th market?   Dumbest thing I've read on the internet this year so far.

My thoughts exactly.

Son_of_Dragon
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
January 03, 2014, 06:28:45 AM
 #462

Hi catman, Command Line Banking gettransaction function only have receiver address, how can I get the sender address?

{
"value" : 99999999.00000000,
"n" : 1,
"scriptPubKey" : {
"asm" : "OP_DUP OP_HASH160 f036a60bc1869143fda5443455467178e0183b01 OP_EQUALVERIFY OP_CHECKSIG",
"hex" : "76a914f036a60bc1869143fda5443455467178e0183b0188ac",
"reqSigs" : 1,
"type" : "pubkeyhash",
"addresses" : [
"PWVJo4iZBGxpoqLwSfv87vWc7yo9N9Lmag"
]
}
}

Finding the sender address is not particularly straight forward in any cryptocoin. Instead of gettransaction you need to use:
Code:
getrawtransaction txid 1

This will return an array with more detailed information.

Basically every output has an (or many) input(s) so you need to examine the transactions associated with the input(s) to find the address of the originating wallet.

This is why gambling sites that do auto-payouts tell you not to use exchange wallets because the address(es) that are in the transaction inputs could lead to any one of thousands of wallet accounts.

Example:
Code:
getrawtransaction 169e41fff64425ec1507ff97e0bfca95a8fbd3dd9276da4cd5022ddc730fa8dd 1


Code:
{
"hex" : "01000000c549c652010b459274cb1869d06acb06e2ce25702189b176a19709f160d817f9f1b5fc980f010000004a493046022100f2115b188309136510edaa7ff955a25062a206678d0c2e519509abf481262478022100b77c05f45dd382c359f007bc586cb1ac177ab782cf8cadd1ebf5decdeea04ab301ffffffff018d9e711b000000001976a91473779bed07df4ec2e673cc02d4ac512b22c5856388ac00000000",
"txid" : "169e41fff64425ec1507ff97e0bfca95a8fbd3dd9276da4cd5022ddc730fa8dd",
"version" : 1,
"time" : 1388726725,
"locktime" : 0,
"vin" : [
{
"txid" : "0f98fcb5f1f917d860f10997a176b189217025cee206cb6ad06918cb7492450b",
"vout" : 1,
"scriptSig" : {
"asm" : "3046022100f2115b188309136510edaa7ff955a25062a206678d0c2e519509abf481262478022100b77c05f45dd382c359f007bc586cb1ac177ab782cf8cadd1ebf5decdeea04ab301",
"hex" : "493046022100f2115b188309136510edaa7ff955a25062a206678d0c2e519509abf481262478022100b77c05f45dd382c359f007bc586cb1ac177ab782cf8cadd1ebf5decdeea04ab301"
},
"sequence" : 4294967295
}
],
"vout" : [
{
"value" : 460430989.00000000,
"n" : 0,
"scriptPubKey" : {
"asm" : "OP_DUP OP_HASH160 73779bed07df4ec2e673cc02d4ac512b22c58563 OP_EQUALVERIFY OP_CHECKSIG",
"hex" : "76a91473779bed07df4ec2e673cc02d4ac512b22c5856388ac",
"reqSigs" : 1,
"type" : "pubkeyhash",
"addresses" : [
"PK7i9cqAQruSzXT8BGVT9QNiJYDGep7qTu"
]
}
}
],
"blockhash" : "5fa258ad99b9b5d55c3edc74a0c7be19b70d2683b1ba047463091050e3ab23e5",
"confirmations" : 68,
"time" : 1388726905,
"blocktime" : 1388726905
}

This has 1 input transaction with the txid 0f98fcb5f1f917d860f10997a176b189217025cee206cb6ad06918cb7492450b
Code:
getrawtransaction 0f98fcb5f1f917d860f10997a176b189217025cee206cb6ad06918cb7492450b 1

Code:
{
"hex" : "010000004245c65201b29e616ffcf1766abf8959303605f405dea56c9162ab227f99105ece0ffcc010010000006b483045022100ebc0dfae1a39e4c6053ab42e1cec54af177a65c3607b35da78600907990c8d4a02204344f3edb8c0c69245078ca6a7a8eb8624c668a6e2c57636ba2762e9f5bb9aaa0121036fa0bdaa3b079d2aa757ba982c9d27e8bb90e2de13b9bb7f285bdfff0daf8616ffffffff030000000000000000008d9e711b000000002321036fa0bdaa3b079d2aa757ba982c9d27e8bb90e2de13b9bb7f285bdfff0daf8616ac8e9e711b000000002321036fa0bdaa3b079d2aa757ba982c9d27e8bb90e2de13b9bb7f285bdfff0daf8616ac00000000",
"txid" : "0f98fcb5f1f917d860f10997a176b189217025cee206cb6ad06918cb7492450b",
"version" : 1,
"time" : 1388725570,
"locktime" : 0,
"vin" : [
{
"txid" : "10c0fc0fce5e10997f22ab62916ca5de05f40536305989bf6a76f1fc6f619eb2",
"vout" : 1,
"scriptSig" : {
"asm" : "3045022100ebc0dfae1a39e4c6053ab42e1cec54af177a65c3607b35da78600907990c8d4a02204344f3edb8c0c69245078ca6a7a8eb8624c668a6e2c57636ba2762e9f5bb9aaa01 036fa0bdaa3b079d2aa757ba982c9d27e8bb90e2de13b9bb7f285bdfff0daf8616",
"hex" : "483045022100ebc0dfae1a39e4c6053ab42e1cec54af177a65c3607b35da78600907990c8d4a02204344f3edb8c0c69245078ca6a7a8eb8624c668a6e2c57636ba2762e9f5bb9aaa0121036fa0bdaa3b079d2aa757ba982c9d27e8bb90e2de13b9bb7f285bdfff0daf8616"
},
"sequence" : 4294967295
}
],
"vout" : [
{
"value" : 0.00000000,
"n" : 0,
"scriptPubKey" : {
"asm" : "",
"hex" : "",
"type" : "nonstandard"
}
},
{
"value" : 460430989.00000000,
"n" : 1,
"scriptPubKey" : {
"asm" : "036fa0bdaa3b079d2aa757ba982c9d27e8bb90e2de13b9bb7f285bdfff0daf8616 OP_CHECKSIG",
"hex" : "21036fa0bdaa3b079d2aa757ba982c9d27e8bb90e2de13b9bb7f285bdfff0daf8616ac",
"reqSigs" : 1,
"type" : "pubkey",
"addresses" : [
"PWoQVYW3j1AoEdQYsCS3b3px1ryUB518aw"
]
}
},
{
"value" : 460430990.00000000,
"n" : 2,
"scriptPubKey" : {
"asm" : "036fa0bdaa3b079d2aa757ba982c9d27e8bb90e2de13b9bb7f285bdfff0daf8616 OP_CHECKSIG",
"hex" : "21036fa0bdaa3b079d2aa757ba982c9d27e8bb90e2de13b9bb7f285bdfff0daf8616ac",
"reqSigs" : 1,
"type" : "pubkey",
"addresses" : [
"PWoQVYW3j1AoEdQYsCS3b3px1ryUB518aw"
]
}
}
],
"blockhash" : "4ccf97e0843ce07544e0cf392e3ef212fc6ed8f3bc84e3d715a8fd4488d25933",
"confirmations" : 132,
"time" : 1388725570,
"blocktime" : 1388725570
}

This transaction was one of two that were paid to the address PWoQVYW3j1AoEdQYsCS3b3px1ryUB518aw so that should be the originating address (or at least one belonging to that wallet).

I got it, tks Petr1fied.
killerbelka
Newbie
*
Offline Offline

Activity: 32
Merit: 0


View Profile
January 03, 2014, 06:48:12 AM
 #463

Can anyone say me what is with my wallet, its totally lag, and in the Debug file somethink like that
ERROR: CheckProofOfStake() : INFO: check kernel failed on coinstake 2d8e3befb8c1797ef9dd4d48948f8e3f6429e4bfdeaf91fc0506cf6044c4513f, hashProof=0000000000000000000000000000000000000000000000000000000000000000
WARNING: ProcessBlock(): check proof-of-stake failed for block 284c3020a11cb52ce5f0d338d2641f9449e7e6865157dd26d1b7cebf1b07fde3
IRC got join
IRC got join
The_Catman (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


Captain Jack Fenderson


View Profile WWW
January 03, 2014, 07:10:30 AM
 #464

Can anyone say me what is with my wallet, its totally lag, and in the Debug file somethink like that
ERROR: CheckProofOfStake() : INFO: check kernel failed on coinstake 2d8e3befb8c1797ef9dd4d48948f8e3f6429e4bfdeaf91fc0506cf6044c4513f, hashProof=0000000000000000000000000000000000000000000000000000000000000000
WARNING: ProcessBlock(): check proof-of-stake failed for block 284c3020a11cb52ce5f0d338d2641f9449e7e6865157dd26d1b7cebf1b07fde3
IRC got join
IRC got join

General response regarding Pennies client lag:
Due to the massive amount of stake that is still being calculated by the network, clients (especially GUI clients) are expected to be extremely laggy and possibly crash periodically. Most of these issues should be resolved after the January 8th fix, any remaining issues will be looked into with more detail sometime after that.

meta.p02
Full Member
***
Offline Offline

Activity: 196
Merit: 100



View Profile
January 03, 2014, 07:39:07 AM
 #465

Would it be possible to amend the max amount that can be sent in one transaction to, say, 100 trillion?

Earn Devcoins by Writing | Trade on Cryptsy! Faucets: Watch ads, earn Bitcoin | Visit pages, get Bitcoin | Gamble with faucet earnings!
If you found my post informative/interesting, consider tipping at BTC: 15877457612137dj4MM57bGXRkPzU4wPRM or DVC: 1B2PAYVe9BQRrZKaWZxWtunutwrm6fVcF7.
meljohn333
Newbie
*
Offline Offline

Activity: 21
Merit: 0


View Profile
January 03, 2014, 07:54:00 AM
 #466

shakezula, developer of Geocoin, Doubloons, and Pennies, Foocoin
much history! so doge!
pyds1977
Newbie
*
Offline Offline

Activity: 61
Merit: 0


View Profile
January 03, 2014, 09:03:18 AM
 #467

i need help!!!!!! Huh Huh Huh
here anyone have got tons of stake before? does it mean i lost cents if i  lay it down in cryptsy?
Son_of_Dragon
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
January 03, 2014, 02:53:27 PM
Last edit: January 03, 2014, 04:56:07 PM by Son_of_Dragon
 #468

Solved!! Grin

when calling the pennies json-rpc, not parameter method like getblockcount result is ok, but parameter method like getblockhash report 500 error, request as below, please help, tks.

Code:
{"jsonrpc":"1.0","id":"1","method":"getblockcount"}
Code:
{"jsonrpc":"1.0","id":"1","method":"getblockhash","params":["0"]}
xchange
Member
**
Offline Offline

Activity: 73
Merit: 10


View Profile
January 04, 2014, 11:44:59 AM
 #469

Dear Petr1fied and Cat_man,
I use the 10.0 ver.,when I receive interest(Savings Interest ***** CENT), but after a few min it disappeared(become 0 CENT), and the Savings has not increase, why?
Many thanks.
bikerleszno
Hero Member
*****
Offline Offline

Activity: 656
Merit: 501


XBY - New Tech Coin (POSIGN) xtrabytes.global


View Profile WWW
January 04, 2014, 02:03:15 PM
 #470

Dear Petr1fied and Cat_man,
I use the 10.0 ver.,when I receive interest(Savings Interest ***** CENT), but after a few min it disappeared(become 0 CENT), and the Savings has not increase, why?
Many thanks.

Same here Sad
All transaction 0 confirmations ...

XBY - New Technology Coin (POSIGN) - https://xtrabytes.global
Telegram Group - https://t.me/xtrabytes_official
cryptohunter
Legendary
*
Offline Offline

Activity: 2100
Merit: 1167

MY RED TRUST LEFT BY SCUMBAGS - READ MY SIG


View Profile
January 04, 2014, 02:05:10 PM
 #471

i need help!!!!!! Huh Huh Huh
here anyone have got tons of stake before? does it mean i lost cents if i  lay it down in cryptsy?


yes, cryptsy keeps it all , they have trillions for free each day Smiley  they love cents. they make more off cents than off fee's i think.

pyds1977
Newbie
*
Offline Offline

Activity: 61
Merit: 0


View Profile
January 04, 2014, 03:38:53 PM
 #472

i need help!!!!!! Huh Huh Huh
here anyone have got tons of stake before? does it mean i lost cents if i  lay it down in cryptsy?


yes, cryptsy keeps it all , they have trillions for free each day Smiley  they love cents. they make more off cents than off fee's i think.

much thx,

really sad for me,, so i have no chance to stake because of being late!! do i? i bought hugh amount cents just kept in Cryptsy.. i dont know the stake issue before Jan 1st.
killerbelka
Newbie
*
Offline Offline

Activity: 32
Merit: 0


View Profile
January 05, 2014, 12:13:16 AM
 #473

Dear Petr1fied and Cat_man,
I use the 10.0 ver.,when I receive interest(Savings Interest ***** CENT), but after a few min it disappeared(become 0 CENT), and the Savings has not increase, why?
Many thanks.

Same here Sad
All transaction 0 confirmations ...
I have the same...Who knows what is the problem?
BitcoinsNL
Newbie
*
Offline Offline

Activity: 21
Merit: 0


View Profile
January 05, 2014, 02:49:53 PM
 #474

Killerbelka. I looked into your problem in detail and found that due to the massive amount of stake that is still being calculated by the network, clients (especially GUI clients) are expected to be extremely laggy and possibly crash periodically. Most of these issues should be resolved after the January 8th fix, any remaining issues will be looked into with more detail sometime after that.

I dont know why this has not been posted in this topic as many people should have this problem.

Ps catman, I like your style
killerbelka
Newbie
*
Offline Offline

Activity: 32
Merit: 0


View Profile
January 05, 2014, 03:31:53 PM
 #475

Killerbelka. I looked into your problem in detail and found that due to the massive amount of stake that is still being calculated by the network, clients (especially GUI clients) are expected to be extremely laggy and possibly crash periodically. Most of these issues should be resolved after the January 8th fix, any remaining issues will be looked into with more detail sometime after that.

I dont know why this has not been posted in this topic as many people should have this problem.

Ps catman, I like your style
I see when the Catman was posted it...just wanna know that all will be fine with my wallet Wink
Stick56
Member
**
Offline Offline

Activity: 68
Merit: 10

Hoping to see another sunrise from home!


View Profile
January 05, 2014, 03:44:00 PM
 #476

First off I am about the show how high my stupidity level goes but if you don't know ask someone smarter. I'm pretty sure I have screwed up and lost my coins but I had lil invested so no big deal

Here is my situation: I upgraded to version 10. Everything worked great but now after downloading the block chain and getting insync, now all my wallet/client does is add up blocks in the blocks remaining spot never syncing again. In short I can redo load the block chain and sync up but then no nore insync and the remaining blocks just kep growing.

Now to my question, is the situation I tried to explain the way it is supposed to work or is something wrong?

My wallet says out of sync and the remaining blocks keeps a growing, when I screw something up I really do a number on it, lol
killerbelka
Newbie
*
Offline Offline

Activity: 32
Merit: 0


View Profile
January 05, 2014, 03:53:18 PM
 #477

First off I am about the show how high my stupidity level goes but if you don't know ask someone smarter. I'm pretty sure I have screwed up and lost my coins but I had lil invested so no big deal

Here is my situation: I upgraded to version 10. Everything worked great but now after downloading the block chain and getting insync, now all my wallet/client does is add up blocks in the blocks remaining spot never syncing again. In short I can redo load the block chain and sync up but then no nore insync and the remaining blocks just kep growing.

Now to my question, is the situation I tried to explain the way it is supposed to work or is something wrong?

My wallet says out of sync and the remaining blocks keeps a growing, when I screw something up I really do a number on it, lol
I think all wallets now laggy, just keep it run and he will download the blocks later...
Stick56
Member
**
Offline Offline

Activity: 68
Merit: 10

Hoping to see another sunrise from home!


View Profile
January 05, 2014, 04:40:42 PM
 #478

First off I am about the show how high my stupidity level goes but if you don't know ask someone smarter. I'm pretty sure I have screwed up and lost my coins but I had lil invested so no big deal

Here is my situation: I upgraded to version 10. Everything worked great but now after downloading the block chain and getting insync, now all my wallet/client does is add up blocks in the blocks remaining spot never syncing again. In short I can redo load the block chain and sync up but then no nore insync and the remaining blocks just kep growing.

Now to my question, is the situation I tried to explain the way it is supposed to work or is something wrong?

My wallet says out of sync and the remaining blocks keeps a growing, when I screw something up I really do a number on it, lol
I think all wallets now laggy, just keep it run and he will download the blocks later...

Thanks!
lajz99
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500


View Profile
January 05, 2014, 07:08:20 PM
 #479

Oh for fucks sake. I never said I was abondaning pennies. I wouldn't have voluntered to take it over if I was just going to abondan it.

However, I took it over for fun as was the intention of pennies and you insufferable entitled greedy twats are making it decidedly not fun. As such i find no reward in making useless changes to the coin to appease you. What do you even want from it now? IT'S FIXED. I CAN'T FIX IT ANYMORE THAN FIXED. If it breaks again I will be here to fix it again. It's what I do.

I do not, on the other hand, have any connections or sway over exchanges to make them keep trading an unprofitable coin. That's not my job, and that's all I'm saying. The only thing I will not do for you is to advertise and promote a coin i know you shouldn't invest in. But i'm not going to stop you from doing so, and that is all.


You didn't fix shit, you fucked it all up. 

Why don't you make a fucking clear post about what has been done and will be done with the coin and stop bitching?  If you're going to take over a coin then put the time in and deal with the questions and posts on here.

bikerleszno
Hero Member
*****
Offline Offline

Activity: 656
Merit: 501


XBY - New Tech Coin (POSIGN) xtrabytes.global


View Profile WWW
January 05, 2014, 08:25:21 PM
 #480

You are lucky if you get stake Smiley

People who had many many transactions it is not possible to stake now ...

Let is wait until 8th jan now we cant do nothing more ...

XBY - New Technology Coin (POSIGN) - https://xtrabytes.global
Telegram Group - https://t.me/xtrabytes_official
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 [24] 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 ... 107 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!