Bitcoin Forum
May 12, 2024, 10:44:21 PM *
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 75 76 77 78 79 ... 661 »
  Print  
Author Topic: [ANN][XCP] Counterparty - Pioneering Peer-to-Peer Finance - Official Thread  (Read 1276306 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
mtbitcoin
Legendary
*
Offline Offline

Activity: 876
Merit: 1000


Etherscan.io


View Profile
January 09, 2014, 06:46:04 PM
 #561

I am seeing a first non burn message in the transaction logs DB (tx_index = 423) with the message data "Hello world, @maraoz was here!!!"

Any idea how did that get in? Looks like spam  Smiley

EtherScan::Ethereum Block Explorer | BlockScan::Coming Soon
1715553861
Hero Member
*
Offline Offline

Posts: 1715553861

View Profile Personal Message (Offline)

Ignore
1715553861
Reply with quote  #2

1715553861
Report to moderator
1715553861
Hero Member
*
Offline Offline

Posts: 1715553861

View Profile Personal Message (Offline)

Ignore
1715553861
Reply with quote  #2

1715553861
Report to moderator
1715553861
Hero Member
*
Offline Offline

Posts: 1715553861

View Profile Personal Message (Offline)

Ignore
1715553861
Reply with quote  #2

1715553861
Report to moderator
Each block is stacked on top of the previous one. Adding another block to the top makes all lower blocks more difficult to remove: there is more "weight" above each block. A transaction in a block 6 blocks deep (6 confirmations) will be very difficult to remove.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
jimhsu
Sr. Member
****
Offline Offline

Activity: 364
Merit: 264


View Profile
January 09, 2014, 06:55:33 PM
 #562

I am seeing a first non burn message in the transaction logs DB (tx_index = 423) with the message data "Hello world, @maraoz was here!!!"

Any idea how did that get in? Looks like spam  Smiley


https://blockchain.info/tx/7ae5e9551f6ed0427f1427292952635137137bdca0719990c0fcf4c6f416cd22

Is this what an actual counterparty tx looks like?

Dans les champs de l'observation le hasard ne favorise que les esprits préparé
btc4ever
Sr. Member
****
Offline Offline

Activity: 321
Merit: 250


View Profile
January 09, 2014, 07:12:37 PM
 #563

Has anyone gotten counterpartyd running on Ubuntu 12.10 yet?   I had it running initially but later code broke it, and now I see this message from the installer:

Unsupported Ubuntu version, please use 13.10 or 12.04 LTS

Psst!!  Wanna make bitcoin unstoppable? Why the Only Real Way to Buy Bitcoins Is on the Streets. Avoid banks and centralized exchanges.   Buy/Sell coins locally.  Meet other bitcoiners and develop your network.   Try localbitcoins.com or find or start a buttonwood / satoshi square in your area.  Pass it on!
xnova
Sr. Member
****
Offline Offline

Activity: 390
Merit: 254

Counterparty Developer


View Profile
January 09, 2014, 08:02:18 PM
 #564

Has anyone gotten counterpartyd running on Ubuntu 12.10 yet?   I had it running initially but later code broke it, and now I see this message from the installer:

Unsupported Ubuntu version, please use 13.10 or 12.04 LTS

Are you semi-comfortable working with Python? If so, feel free to try disabling that check in the code, and then maybe change

Code:
if ubuntu_release == "13.10":

to

Code:
if ubuntu_release in ["13.10", "12.10"]:

and see how it goes. If it dies at that part (can't find a package, most likely), try undoing that change and instead changing that elif clause below it (elif ubuntu_release == "12.04") to include 12.10 as well, and try that...

My ability to support a bunch of Ubuntu versions is limited, so I just had support for the current LTS version (12.04) and the newest version (13.10). So if no go, then you may want to update to 13.10 if that's not a big hassle.

Visit the official Counterparty forums: http://counterpartytalk.org
PhantomPhreak (OP)
Sr. Member
****
Offline Offline

Activity: 476
Merit: 300

Counterparty Chief Scientist and Co-Founder


View Profile
January 09, 2014, 10:02:30 PM
 #565

I am seeing a first non burn message in the transaction logs DB (tx_index = 423) with the message data "Hello world, @maraoz was here!!!"

Any idea how did that get in? Looks like spam  Smiley


https://blockchain.info/tx/7ae5e9551f6ed0427f1427292952635137137bdca0719990c0fcf4c6f416cd22

Is this what an actual counterparty tx looks like?

That's not a Counterparty transaction, though both it and Counterparty use OP_RETURN.
MsCollec
Legendary
*
Offline Offline

Activity: 1400
Merit: 1000


View Profile
January 09, 2014, 11:10:44 PM
 #566

this is interesting
rockxie
Sr. Member
****
Offline Offline

Activity: 284
Merit: 254


View Profile
January 09, 2014, 11:38:43 PM
 #567

I use bitcoin-Qt,and when I start it ,it shows an error such like "change reindex not txindex",and when I use "reindex=1 "in .conf file ,the wallet rescan.After hours later,I close it,and modify the .conf file (reindex=1  ---> txindex=1),but this problem come again.

Anything I miss?

PS: I noticed that blockchain wallet is OK,Can I just use the Bitcoin API of sendfrom ?


sendfrom    <fromaccount> <tobitcoinaddress> <amount> [minconf=1] [comment] [comment-to]   

<amount> is a real and is rounded to 8 decimal places. Will send the given amount to the given address, ensuring the account has a valid balance using [minconf] confirmations. Returns the transaction ID if successful (not in JSON object).

btc4ever
Sr. Member
****
Offline Offline

Activity: 321
Merit: 250


View Profile
January 09, 2014, 11:56:23 PM
 #568

Yeah, i already tried adding 12.10 to both if clauses before I posted.  No go.  it can't find pip3  ( called pip-3.2  in 12.10 ) and when i fixed that, something else was broken.   I didn't know the python library situation was so screwy between ubuntu releases.

I'm going to just see about updating to 13.10.  About time anyway.  thanks.

Has anyone gotten counterpartyd running on Ubuntu 12.10 yet?   I had it running initially but later code broke it, and now I see this message from the installer:

Unsupported Ubuntu version, please use 13.10 or 12.04 LTS

Are you semi-comfortable working with Python? If so, feel free to try disabling that check in the code, and then maybe change

Code:
if ubuntu_release == "13.10":

to

Code:
if ubuntu_release in ["13.10", "12.10"]:

and see how it goes. If it dies at that part (can't find a package, most likely), try undoing that change and instead changing that elif clause below it (elif ubuntu_release == "12.04") to include 12.10 as well, and try that...

My ability to support a bunch of Ubuntu versions is limited, so I just had support for the current LTS version (12.04) and the newest version (13.10). So if no go, then you may want to update to 13.10 if that's not a big hassle.

Psst!!  Wanna make bitcoin unstoppable? Why the Only Real Way to Buy Bitcoins Is on the Streets. Avoid banks and centralized exchanges.   Buy/Sell coins locally.  Meet other bitcoiners and develop your network.   Try localbitcoins.com or find or start a buttonwood / satoshi square in your area.  Pass it on!
led_lcd
Sr. Member
****
Offline Offline

Activity: 262
Merit: 250


View Profile
January 10, 2014, 12:02:56 AM
 #569

I'm going to just see about updating to 13.10.  About time anyway.  thanks.

If you didn't want to upgrade your base OS and you have enough memory and hard drive space in your machine, try installing Ubunu 13.10 in a Virtualbox.
peled1986
Legendary
*
Offline Offline

Activity: 882
Merit: 1002


View Profile
January 10, 2014, 01:30:27 AM
 #570

There's a 1BTC limit per address mentioned in first post.Is it ok to burn more from another address in the same wallet?

The limit is per address.

just to make sure i understand the answer.
its o.k to burn more from another address in the same wallet - right?
Djinou94
Legendary
*
Offline Offline

Activity: 1036
Merit: 1000


View Profile
January 10, 2014, 01:32:15 AM
 #571

Excuse me
But where can i download Bitcoind please?
I only have Bitcoin-Qt





Install and] Configure Bitcoind:

Bitcoind/Bitcoin-Qt must be run with the following options, either set on the command-line, or in your bitcoin.conf:

txindex=1
server=1
testnet=1 (optional)

And where can i find the bitcoin.conf?

led_lcd
Sr. Member
****
Offline Offline

Activity: 262
Merit: 250


View Profile
January 10, 2014, 01:48:40 AM
 #572

Excuse me
But where can i download Bitcoind please?
I only have Bitcoin-Qt


[...]

And where can i find the bitcoin.conf?

If you have bitcoin-qt then that is sufficient. The location of bitcoin.conf is different depending on your operating system:

https://en.bitcoin.it/wiki/Running_Bitcoin#Bitcoin.conf_Configuration_File
Jaguar0625
Sr. Member
****
Offline Offline

Activity: 299
Merit: 250


View Profile
January 10, 2014, 01:52:14 AM
 #573

I just burned a small amount of BTC using the blockchain.info wallet instructions and it worked great!

NEM - nem.io
BitThink
Legendary
*
Offline Offline

Activity: 882
Merit: 1000



View Profile
January 10, 2014, 01:52:39 AM
 #574

Attention, I've found the first invalid burning, which has two different input addresses. This may have already caused 0.7 BTC was burnt for nothing.

https://blockchain.info/tx/0ffcfaca47b5e962913e5e12ef914cb665bbaecec7132de476bd132c8edce732

PhantomPhreak:

Is it possible to do as MasterCoin: credit all XCP burnt by this 0.7 BTC to the input address which has the maximum input value? In this case: 1NMwvn6DWFr5LPrHX2M1KAJzxfy6heRSTH

or credit to the first input address: 1bPb7NZ1mdH9sQPEWp2j3shPmHS1BMVos?

It's totally fine to just ignore this transaction cause you have warned the users all the time already, but just asking whether this is doable to just save this guy from losing 500 bucks. Thanks.


ATTENTION:

Do not use a wallet having multiple addresses to burn BTC, cause it may burn BTC from two addresses together and currently this kind of transaction is invalid and may cause you lose all the bitcoins for nothing.
mtbitcoin
Legendary
*
Offline Offline

Activity: 876
Merit: 1000


Etherscan.io


View Profile
January 10, 2014, 02:03:39 AM
 #575

I am seeing a first non burn message in the transaction logs DB (tx_index = 423) with the message data "Hello world, @maraoz was here!!!"

Any idea how did that get in? Looks like spam  Smiley


https://blockchain.info/tx/7ae5e9551f6ed0427f1427292952635137137bdca0719990c0fcf4c6f416cd22

Is this what an actual counterparty tx looks like?

That's not a Counterparty transaction, though both it and Counterparty use OP_RETURN.

Ok, but the Couterparty client is logging the transaction in the sqlite transaction table. So it does look like the client is logging all transactions with an OP_RETURN?

Cheers

EtherScan::Ethereum Block Explorer | BlockScan::Coming Soon
peled1986
Legendary
*
Offline Offline

Activity: 882
Merit: 1002


View Profile
January 10, 2014, 02:05:55 AM
 #576

ATTENTION:

Do not use a wallet having multiple addresses to burn BTC, cause it may burn BTC from two addresses together and currently this kind of transaction is invalid and may cause you lose all the bitcoins for nothing.
+1

thank you for clarifying this.
MsCollec
Legendary
*
Offline Offline

Activity: 1400
Merit: 1000


View Profile
January 10, 2014, 02:17:36 AM
 #577

I just burned a small amount of BTC using the blockchain.info wallet instructions and it worked great!

same here too, i was anxious that i am gonna messed up the instructions.
PhantomPhreak (OP)
Sr. Member
****
Offline Offline

Activity: 476
Merit: 300

Counterparty Chief Scientist and Co-Founder


View Profile
January 10, 2014, 02:22:11 AM
 #578

There's a 1BTC limit per address mentioned in first post.Is it ok to burn more from another address in the same wallet?

The limit is per address.

just to make sure i understand the answer.
its o.k to burn more from another address in the same wallet - right?


Yep.
zxsz66
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
January 10, 2014, 02:59:31 AM
 #579

我本不想灌水的,但是你们逼着我灌水,我就没办法了。每天都登录,它娘的时长就不增长,郁闷死我了
BitThink
Legendary
*
Offline Offline

Activity: 882
Merit: 1000



View Profile
January 10, 2014, 03:09:41 AM
 #580

https://blockchain.info/tx/9615ea60603430587f67a82f4bf62eaa1a4cae4a156807cb62b7ccaaab3ba4f9

Another invalid transaction with 0.5 BTC !

Attention:

Please stop burning from a wallet with multiple addresses !!!!!!

PhantomPhreak:

I really think it's better to credit the XCP to the first input address. This will not cause any serious issue (at most adding 2 to 3 lines of code) in my opinion.
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 75 76 77 78 79 ... 661 »
  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!