Bitcoin Forum
May 09, 2024, 06:06:59 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 [340] 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 ... 557 »
  Print  
Author Topic: [ANN][C2.1] Coin2 | Pow/PoS | ChainOfConflict[FPS] The Future of Gaming is Now  (Read 499693 times)
zyronx
Legendary
*
Offline Offline

Activity: 1078
Merit: 1001



View Profile
May 30, 2014, 07:39:05 AM
 #6781

I can see a lot of unhappy and frustrated posters on here (not to mention the ungrateful ones). There is quite a few people waiting for trading to resume, so they can buy. If you are not happy with the board/progress/how the issues are handled, then I suggest you sell when it re-opens. Your coins will end up being bought by people that are actually supporting this project and will be happy to let the board do it's job.

Good words! I like you FightFear! Smiley 

1715234819
Hero Member
*
Offline Offline

Posts: 1715234819

View Profile Personal Message (Offline)

Ignore
1715234819
Reply with quote  #2

1715234819
Report to moderator
1715234819
Hero Member
*
Offline Offline

Posts: 1715234819

View Profile Personal Message (Offline)

Ignore
1715234819
Reply with quote  #2

1715234819
Report to moderator
Bitcoin addresses contain a checksum, so it is very unlikely that mistyping an address will cause you to lose money.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715234819
Hero Member
*
Offline Offline

Posts: 1715234819

View Profile Personal Message (Offline)

Ignore
1715234819
Reply with quote  #2

1715234819
Report to moderator
UdjinM6
Legendary
*
Offline Offline

Activity: 1318
Merit: 1040



View Profile WWW
May 30, 2014, 09:17:15 AM
 #6782

Correction to idea with RPC calls:

- I thought about it a little more and that's not that good idea actually - rpc protocol is plain http, we cannot trust it. One can write his rpc server and fake responses easily.

Regarding 2 latest ideas:

 - simple daemon that run locally can be easily compromised too and I'm not sure we are capable of writing another safe crypto thing just for swapping coins
 - I don't think exchanges are going to swap balance by unconfirmed deposits - pretty risky for them

Sorry, can't join IRC right now, please post ideas here too. Be back in 8-10 hours.

Thanks.

I am not an expert on the blockchain.... but, with regards the RPC method,
if we use listUnspent() then shouldn't the response be verifiable ?

Well, afaik "listunspent" gives you a list of transaction outputs (vout) that are not seen in inputs (vin) of any other transaction. And this info is publicly available in blockchain. As an example look at that address http://nc2chain.info/address/CeNudFti4pMv2DGhQny9tPZcgpBzh7pTa9
Note (U)nspent and (S)pent in transaction outputs...

Speaking of untrusted info and the way to help devs - you just gave me another idea btw

Dev can make simple form to request only this kind of info - "old address, signed message, new address". So there will be no need to make transaction and it can be nicely automated too.
This is how to make it work (yes, using console again, sorry everyone Wink):
1. some person sign his address as a message (you can sign any message with <Coin2.0address> only if you have private key for it)
Code:
signmessage <Coin2.0address> <message>
for example
Code:
signmessage CHAiN12348eGFtwQsMTVPFfGwQRniAMqw1 CHAiN12348eGFtwQsMTVPFfGwQRniAMqw1
and the output will be something like that (for this example)
Code:
HGlGZcNK54gFlnKLOPUlFYdBlvyfaFrL6HRXJyJHtjoONPyr0JYaC940kuRgOYM3WIMySeoDNUoVhl8F33AB1oE=
2. this person enters data in form I mentioned before
- old address - CHAiN12348eGFtwQsMTVPFfGwQRniAMqw1
- signed message - HGlGZcNK54gFlnKLOPUlFYdBlvyfaFrL6HRXJyJHtjoONPyr0JYaC940kuRgOYM3WIMySeoDNUoVhl8 F33AB1oE=
- new address - SomeNewAddressForOurNewCoin2walletqt
3. devs can easily verify that this person own this address by making RPC call to old daemon
Code:
verifymessage <Coin2.0address> <signature> <message>
or for my example
Code:
verifymessage CHAiN12348eGFtwQsMTVPFfGwQRniAMqw1 HGlGZcNK54gFlnKLOPUlFYdBlvyfaFrL6HRXJyJHtjoONPyr0JYaC940kuRgOYM3WIMySeoDNUoVhl8F33AB1oE= CHAiN12348eGFtwQsMTVPFfGwQRniAMqw1
that should give dev an output
Code:
true
if everything match or
Code:
false
if there is something wrong with that address or signature (so maybe someone is trying to fool dev)
4. dev can use whatever method they like to get old balance, for example nc2chain.info API
Code:
http://nc2chain.info/api/address/CHAiN12348eGFtwQsMTVPFfGwQRniAMqw1/balance
Code:
7555.502597
5. ... and credit this person to his SomeNewAddressForOurNewCoin2walletqt by making RPC call to new daemon
Code:
sendtoaddress <NewCoin2.0address> <amount>
like
Code:
sendtoaddress SomeNewAddressForOurNewCoin2walletqt 7555.502597


What do you guys think? Roll Eyes

DASH: XsV4GHVKGTjQFvwB7c6mYsGV3Mxf7iser6
FredDag
Sr. Member
****
Offline Offline

Activity: 436
Merit: 250



View Profile
May 30, 2014, 10:07:08 AM
 #6783

Speaking of untrusted info and the way to help devs - you just gave me another idea btw

Dev can make simple form to request only this kind of info - "old address, signed message, new address". So there will be no need to make transaction and it can be nicely automated too.
[snip]

What do you guys think? Roll Eyes

Hey there UdjinM6 .

I like this approach... no need to try and get corrupt wallets to send a transaction, instead holders prove they own an address.
Hopefully this is something the guys can use.
Wolf_of_Wallstreet
Full Member
***
Offline Offline

Activity: 181
Merit: 100


View Profile
May 30, 2014, 10:23:32 AM
Last edit: May 30, 2014, 08:44:08 PM by Wolf_of_Wallstreet
 #6784

I am happy the community supports Dev Team and comes up with new interesting solutions to solve issue.
But overall please do not forget we have users here that do not have the IT-knowledge. If I see ppl having
problems with just open cmd and then open their coin2-qt with the parameters -rescan, they (understandably)
will be overcharged with a swapping way like this  Smiley
In my opinion swapping has to be usable for every coinholder  Wink
nrigo
Hero Member
*****
Offline Offline

Activity: 603
Merit: 500


View Profile
May 30, 2014, 10:32:23 AM
 #6785

Speaking of untrusted info and the way to help devs - you just gave me another idea btw

Dev can make simple form to request only this kind of info - "old address, signed message, new address". So there will be no need to make transaction and it can be nicely automated too.
[snip]

What do you guys think? Roll Eyes

Hey there UdjinM6 .

I like this approach... no need to try and get corrupt wallets to send a transaction, instead holders prove they own an address.
Hopefully this is something the guys can use.

Thank you for your proposal. It's look like a good solution to me and it isn't too difficult for common users if the instructions are well clear.

In a first step, I'm trying to understand what's happen with the blockchain since we launched the coins deposit to exchanges.

It seems to me a node is mining and his blocks only are confirmed by other nodes. I can't say if it is a real attack using the PoW vulnerability or if somebody took accidentally control of the blockchain because he thought about mining to secure the Network. Of this fact nodes are not allowed to generate new PoS blocks and transactions (PoS blocks too?) are never confirmed.

If I understand this well, he could have a monopoly on the blockchain because he's generating more blocks than other nodes and his block chain is always longer than other ones.

My idea: if we were able to take the control of the blockchain and to secure the network again, we could relaunch the coins deposit to exchanges in the standard way.

If you are able to make some diagnostics and to find a solution, your help will be appreciated. Smiley

UdjinM6
Legendary
*
Offline Offline

Activity: 1318
Merit: 1040



View Profile WWW
May 30, 2014, 10:47:18 AM
 #6786

Speaking of untrusted info and the way to help devs - you just gave me another idea btw

Dev can make simple form to request only this kind of info - "old address, signed message, new address". So there will be no need to make transaction and it can be nicely automated too.
[snip]

What do you guys think? Roll Eyes

Hey there UdjinM6 .

I like this approach... no need to try and get corrupt wallets to send a transaction, instead holders prove they own an address.
Hopefully this is something the guys can use.

Thank you for your proposal. It's look like a good solution to me and it isn't too difficult for common users if the instructions are well clear.

In a first step, I'm trying to understand what's happen with the blockchain since we launched the coins deposit to exchanges.

It seems to me a node is mining and his blocks only are confirmed by other nodes. I can't say if it is a real attack using the PoW vulnerability or if somebody took accidentally control of the blockchain because he thought about mining to secure the Network. Of this fact nodes are not allowed to generate new PoS blocks and transactions (PoS blocks too?) are never confirmed.

If I understand this well, he could have a monopoly on the blockchain because he's generating more blocks than other nodes and his block chain is always longer than other ones.

My idea: if we were able to take the control of the blockchain and to secure the network again, we could relaunch the coins deposit to exchanges in the standard way.

If you are able to make some diagnostics and to find a solution, your help will be appreciated. Smiley

Well, reenabling network would be the best solution for sure. I'm trying to investigate it too.
Here what I have in my debug.log btw
Code:
>>> CheckStakeKernelHash: nTimeWeight = 169512
>>> CheckStakeKernelHash: passed GetKernelStakeModifier
>>> bnCoinDayWeight = 1179, bnTargetPerCoinDay=44181385987935051930350383809369221721160212308295210935944315142144
>>> CheckStakeKernelHash - hashProofOfStake too much
I have a lot of similar messages like that where only nTimeWeight and bnCoinDayWeight differ.
I guess this message came from
https://github.com/coin2-project/Coin2.0/blob/3223cb835711b2b78f8dfeb74928bab238785763/src/kernel.cpp#L326
And that's the good news - I think we know where to start digging. So basically something is wrong with the protocol and prevents to generate PoS block correctly. But I don't really understand what caused this protocol break - an attack or an error. And here come bad news - I'm pretty poor at C (C++) so have now idea how/where to dig next. Sad

DASH: XsV4GHVKGTjQFvwB7c6mYsGV3Mxf7iser6
brightlight
Legendary
*
Offline Offline

Activity: 1288
Merit: 1000


View Profile
May 30, 2014, 10:48:05 AM
 #6787

Someone is messing with network again. What are those recent 600+ coin transactions? Another double spend attack?
wheelz1200
Legendary
*
Offline Offline

Activity: 3612
Merit: 1406



View Profile
May 30, 2014, 12:07:49 PM
 #6788

Just my 2 cents but the transfer needs to be "dummied" down. I myself am not an advanced IT person but can figure things out if given the path. I know some people though who dont know the first thing about computers. They can not be excluded from this transfer due to the lack of knowledge of how to accomplish it. Last time was nice and easy. Send to an exchange, wait for the transfer, withdraw into the new wallet. Can someone explain why we are veering away from this method. I though we were going to send to either bittrex or nxt-e and let them do the transfer.

Just an fyi ive learned a lot in the past couple of months about cryptos and programming itself just from this community. Thanks all

       ███████████████▄▄
    ██████████████████████▄
  ██████████████████████████▄
 ███████   ▀████████▀   ████▄
██████████    █▀  ▀    ██████▄
███████████▄▄▀  ██  ▀▄▄████████
███████████          █████████
███████████▀▀▄  ██  ▄▀▀████████
██████████▀   ▀▄  ▄▀   ▀██████▀
 ███████  ▄██▄████▄█▄  █████▀
  ██████████████████████████▀
    ██████████████████████▀
       ███████████████▀▀
.
.Duelbits.
.
..THE MOST REWARDING CASINO......
   ▄▄▄▄████▀███▄▄▄▄▄
▄███▄▀▄██▄   ▄██▄▀▄███▄
████▄█▄███▄█▄███▄█▄████
███████████████████████   ▄██▄
██     ██     ██     ██   ▀██▀
██ ▀▀█ ██ ▀▀█ ██ ▀▀█ ██    ██
██  █  ██  █  ██  █  ██
█▌  ██
██     ██     ██     ████  ██
█████████████████████████  ██
████████████████████████████▀
█████████████████████████
█████████████████████████
████████████████████████▌
       +4,000       
PROVABLY FAIR
GAMES
   $500,000   
MONTHLY
PRIZE POOL
      $10,000     
BLACKJACK
GIVEAWAY
liyuxuanfc
Member
**
Offline Offline

Activity: 78
Merit: 10


View Profile
May 30, 2014, 12:18:48 PM
 #6789

I want to know when to begin to change the C2
I don't want to miss
Can anyone tell me roughly the time and way

UdjinM6
Legendary
*
Offline Offline

Activity: 1318
Merit: 1040



View Profile WWW
May 30, 2014, 12:25:16 PM
 #6790

Just my 2 cents but the transfer needs to be "dummied" down. I myself am not an advanced IT person but can figure things out if given the path. I know some people though who dont know the first thing about computers. They can not be excluded from this transfer due to the lack of knowledge of how to accomplish it. Last time was nice and easy. Send to an exchange, wait for the transfer, withdraw into the new wallet. Can someone explain why we are veering away from this method. I though we were going to send to either bittrex or nxt-e and let them do the transfer.

Just an fyi ive learned a lot in the past couple of months about cryptos and programming itself just from this community. Thanks all

basically - transactions doesn't get confirmed anymore

DASH: XsV4GHVKGTjQFvwB7c6mYsGV3Mxf7iser6
nrigo
Hero Member
*****
Offline Offline

Activity: 603
Merit: 500


View Profile
May 30, 2014, 12:28:18 PM
 #6791

I want to know when to begin to change the C2
I don't want to miss
Can anyone tell me roughly the time and way
The new wallet will be released soon.

Please come here to check announcements of like the FB page to receive Dev team updates.

nrigo
Hero Member
*****
Offline Offline

Activity: 603
Merit: 500


View Profile
May 30, 2014, 12:29:38 PM
 #6792

Just my 2 cents but the transfer needs to be "dummied" down. I myself am not an advanced IT person but can figure things out if given the path. I know some people though who dont know the first thing about computers. They can not be excluded from this transfer due to the lack of knowledge of how to accomplish it. Last time was nice and easy. Send to an exchange, wait for the transfer, withdraw into the new wallet. Can someone explain why we are veering away from this method. I though we were going to send to either bittrex or nxt-e and let them do the transfer.

Just an fyi ive learned a lot in the past couple of months about cryptos and programming itself just from this community. Thanks all

basically - transactions doesn't get confirmed anymore
We are trying to find the most user-friendly solution to exchanges coins from computer wallets.

sonysasankan
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile WWW
May 30, 2014, 12:33:46 PM
 #6793

Is it possible that someone created an anon for C2 and is using that to bypass the double spender's address filter?

Pinkcoin Donations Address ---> PINK: PB9TmJXZTqzLroz9cLzCQe2cNWzEwJeq5g | BTC: 14Yxxxxko19qtLi3k2yvtWQ54vSQg2mLjB <---
Rent Mining rigs for cheap
wheelz1200
Legendary
*
Offline Offline

Activity: 3612
Merit: 1406



View Profile
May 30, 2014, 12:47:49 PM
 #6794

Thanks guys. I understand this isnt easy. I just dont want to see someone who has supported from the beginning get left out because of technical knowledge of computers and programming. If we want the mainstream to adopt (for the fps) than we need to start maiking these actions very user friendly or it might not get adopted as quickly as everyone thinks.

There is still a main barrier up for entrence into the crypto scene for the main stream: ease of use as well as security of one's investment.

       ███████████████▄▄
    ██████████████████████▄
  ██████████████████████████▄
 ███████   ▀████████▀   ████▄
██████████    █▀  ▀    ██████▄
███████████▄▄▀  ██  ▀▄▄████████
███████████          █████████
███████████▀▀▄  ██  ▄▀▀████████
██████████▀   ▀▄  ▄▀   ▀██████▀
 ███████  ▄██▄████▄█▄  █████▀
  ██████████████████████████▀
    ██████████████████████▀
       ███████████████▀▀
.
.Duelbits.
.
..THE MOST REWARDING CASINO......
   ▄▄▄▄████▀███▄▄▄▄▄
▄███▄▀▄██▄   ▄██▄▀▄███▄
████▄█▄███▄█▄███▄█▄████
███████████████████████   ▄██▄
██     ██     ██     ██   ▀██▀
██ ▀▀█ ██ ▀▀█ ██ ▀▀█ ██    ██
██  █  ██  █  ██  █  ██
█▌  ██
██     ██     ██     ████  ██
█████████████████████████  ██
████████████████████████████▀
█████████████████████████
█████████████████████████
████████████████████████▌
       +4,000       
PROVABLY FAIR
GAMES
   $500,000   
MONTHLY
PRIZE POOL
      $10,000     
BLACKJACK
GIVEAWAY
eastward
Member
**
Offline Offline

Activity: 91
Merit: 10


View Profile
May 30, 2014, 12:59:18 PM
 #6795

C2 why repeated murderous? Mysterious disappearance of why? Why the delay in the development team can not solve the problem? Who's to stop C2 currency exchange? And who developed the anonymous C2? Anonymous C2 in the end there? All this is someone behind the scenes or fate? Who is the real driving force behind the scenes? Stay tuned for tonight's "Into science" Grin Grin Grin
sonysasankan
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile WWW
May 30, 2014, 01:18:08 PM
 #6796

C2 why repeated murderous? Mysterious disappearance of why? Why the delay in the development team can not solve the problem? Who's to stop C2 currency exchange? And who developed the anonymous C2? Anonymous C2 in the end there? All this is someone behind the scenes or fate? Who is the real driving force behind the scenes? Stay tuned for tonight's "Into science" Grin Grin Grin

LOL... Chinese dub version Smiley

Pinkcoin Donations Address ---> PINK: PB9TmJXZTqzLroz9cLzCQe2cNWzEwJeq5g | BTC: 14Yxxxxko19qtLi3k2yvtWQ54vSQg2mLjB <---
Rent Mining rigs for cheap
zyronx
Legendary
*
Offline Offline

Activity: 1078
Merit: 1001



View Profile
May 30, 2014, 01:36:06 PM
 #6797

C2 why repeated murderous? Mysterious disappearance of why? Why the delay in the development team can not solve the problem? Who's to stop C2 currency exchange? And who developed the anonymous C2? Anonymous C2 in the end there? All this is someone behind the scenes or fate? Who is the real driving force behind the scenes? Stay tuned for tonight's "Into science" Grin Grin Grin

LOL... Chinese dub version Smiley

My Coin Fu is better then yours!   Grin Grin Grin Grin Grin Grin Wink
wheelz1200
Legendary
*
Offline Offline

Activity: 3612
Merit: 1406



View Profile
May 30, 2014, 02:02:17 PM
 #6798

Is eastward really yoda?

       ███████████████▄▄
    ██████████████████████▄
  ██████████████████████████▄
 ███████   ▀████████▀   ████▄
██████████    █▀  ▀    ██████▄
███████████▄▄▀  ██  ▀▄▄████████
███████████          █████████
███████████▀▀▄  ██  ▄▀▀████████
██████████▀   ▀▄  ▄▀   ▀██████▀
 ███████  ▄██▄████▄█▄  █████▀
  ██████████████████████████▀
    ██████████████████████▀
       ███████████████▀▀
.
.Duelbits.
.
..THE MOST REWARDING CASINO......
   ▄▄▄▄████▀███▄▄▄▄▄
▄███▄▀▄██▄   ▄██▄▀▄███▄
████▄█▄███▄█▄███▄█▄████
███████████████████████   ▄██▄
██     ██     ██     ██   ▀██▀
██ ▀▀█ ██ ▀▀█ ██ ▀▀█ ██    ██
██  █  ██  █  ██  █  ██
█▌  ██
██     ██     ██     ████  ██
█████████████████████████  ██
████████████████████████████▀
█████████████████████████
█████████████████████████
████████████████████████▌
       +4,000       
PROVABLY FAIR
GAMES
   $500,000   
MONTHLY
PRIZE POOL
      $10,000     
BLACKJACK
GIVEAWAY
zyronx
Legendary
*
Offline Offline

Activity: 1078
Merit: 1001



View Profile
May 30, 2014, 02:05:21 PM
 #6799



YODA,  HE IS!
wheelz1200
Legendary
*
Offline Offline

Activity: 3612
Merit: 1406



View Profile
May 30, 2014, 02:07:27 PM
 #6800

Know whats funny........so called crypto market experts.

Oh the charts say this is gonna go up. The charts say that we've created a new bottom...yada yada yada.

Just read a so called expert article sating how the recent bitcoin rise will peak at $565 usd no way to break that barrier. Haha hope he isnt short right now.

Just random thoughts......

       ███████████████▄▄
    ██████████████████████▄
  ██████████████████████████▄
 ███████   ▀████████▀   ████▄
██████████    █▀  ▀    ██████▄
███████████▄▄▀  ██  ▀▄▄████████
███████████          █████████
███████████▀▀▄  ██  ▄▀▀████████
██████████▀   ▀▄  ▄▀   ▀██████▀
 ███████  ▄██▄████▄█▄  █████▀
  ██████████████████████████▀
    ██████████████████████▀
       ███████████████▀▀
.
.Duelbits.
.
..THE MOST REWARDING CASINO......
   ▄▄▄▄████▀███▄▄▄▄▄
▄███▄▀▄██▄   ▄██▄▀▄███▄
████▄█▄███▄█▄███▄█▄████
███████████████████████   ▄██▄
██     ██     ██     ██   ▀██▀
██ ▀▀█ ██ ▀▀█ ██ ▀▀█ ██    ██
██  █  ██  █  ██  █  ██
█▌  ██
██     ██     ██     ████  ██
█████████████████████████  ██
████████████████████████████▀
█████████████████████████
█████████████████████████
████████████████████████▌
       +4,000       
PROVABLY FAIR
GAMES
   $500,000   
MONTHLY
PRIZE POOL
      $10,000     
BLACKJACK
GIVEAWAY
Pages: « 1 ... 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 [340] 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 ... 557 »
  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!