Bitcoin Forum
May 25, 2024, 05:22:19 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
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 »
441  Bitcoin / Project Development / Re: ICBIT Derivatives Market (USD/BTC futures trading) - LIVE on: November 22, 2012, 07:56:38 PM
+1 I like this, one more suggestion for the tabs, how about a tab for the last 50 or 100 trades with timestamps, maybe even a scrolling last trade kinda thing, but I do like how the site is improving daily! Looking good, nice UI.

I second this!  Both the +1 and the suggestion.

In fact, I think the trading history could be published in a way that would make it easier to refute at least some future attacks on your site's honesty. 

There could be a link generating a list of all transactions in the last week, with timestamps, amount and prices, and all clearings done.  The list should be autogenerated on the fly so it contains even the last transaction, and it should be cryptographically signed.  Then after trading, users could in principle download the list, verify that their trades are present and as expect - and later verify against a newer list that the logs have not been tampered with in between.  The cryptographic signature prevents a malicious user from altering the list and claiming tampering.

442  Bitcoin / Armory / Re: Armory - Discussion Thread on: November 22, 2012, 07:44:48 PM
Is the save dialog problem on the offline computer?  I just did it online with the update and it works (created unsigned, saved, next window, loaded, signed, broadcast).  What OS are you in?

No, it is all save dialogs on the online computer.  Both when saving the unsigned TX, and when saving a CSV file with all the transactions in a wallet.

I am on Mac OS X 10.8.2.  The offline computer is running Ubuntu, and there I have the last official release of Armory.

Maybe I should try reinstalling Qt.

EDIT: Recompiling qt and pyqt seems to have helped, at least partly.  It is too late to test more now, I will test more in the weekend (no time tomorrow, unfortunately).
443  Bitcoin / Armory / Re: Armory - Discussion Thread on: November 22, 2012, 03:47:17 PM
I shouldn't have said "malicious." 
You didn't - you said it almost looked malicious.

Quote
Sorry for the trouble!  Getting there...

I am sure you are - and don't apologize, we really appreciate all your hard work!

In principle, the problem with the save dialog could be a Qt problem, although I do not think I have updated Qt.

444  Bitcoin / Armory / Re: Armory - Discussion Thread on: November 22, 2012, 03:25:32 PM
I updated, and tried again.  I wanted to make a test transaction from the offline wallet.  Now I can specify the payment, and get all the way to the window where I should save the transaction.  Unfortunately, that window is totally unresponsive, and I can neither save the transaction nor get rid of the window (short of killing the Python process with Ctrl-C).

The second time I tried, the file name did not appear in the Save window.  I could type in a name myself, but again I could not save the file or close the window, and had to kill Python.

EDIT:  Thank god for git.  Showed me exactly what disappeared (two things, one of which was that "createTxAndBroadcast" function), and I was able to copy it right back in.  The bizarre thing is, it almost looks malicious -- not only did it destroy functionality, but everything that has disappeared still ran and "compiled".  The code was continuous and valid... just not correct.

I will investigate further, but for now I recommitted to 0.84.4 all those updates.

Your words "it almost looks malicious" makes me slightly nervous - and I actually refrained from testing the online wallets!  Wink

What are the odds that a part of a file drops out in such a way that it is still syntactically correct??  On the other hand, if it was malicious, why remove the part of the code leading the user to enter the password - why not just steal the password....

In any case, I suppose git can show you exactly what was changed, and when.
445  Bitcoin / Bitcoin Discussion / Re: SSL certificates are changing on Bitcoin websites on: November 22, 2012, 12:19:27 PM
I still don't understand why all bitcoin-related websites don't make access via a hidden service a standard feature.
Because those of us not doing anything illegal and not being overly paranoid(*) think that using TOR is inconvenient and slow. 

(*) And that may be a significant fraction of all bitcointers. 

446  Bitcoin / Armory / Re: Armory - Discussion Thread on: November 22, 2012, 12:06:15 PM
I pulled the latest version (git pull) and compiled it.  Unfortunately, it does not work very well :-(  I did a "make clean" followed by a "make" just in case something was not recompiled, but that did not help.


BUG 1:

I tried to generate a transaction from an offline wallet.  I clicked "Send Bitcoins" and selected the offline wallet.  Then I pressed OK and got this error:

Code:
(ERROR) Traceback (most recent call last):
  File "ArmoryQt.py", line 2680, in clickSendBitcoins
    dlgSend = DlgSendBitcoins(wlt, self, self)
  File "/Users/schiotz/src/BitcoinArmory/qtdialogs.py", line 4703, in __init__
    self.connect(btnSend, SIGNAL('clicked()'), self.createTxAndBroadcast)
AttributeError: 'DlgSendBitcoins' object has no attribute 'createTxAndBroadcast'

Traceback (most recent call last):
  File "ArmoryQt.py", line 2680, in clickSendBitcoins
    dlgSend = DlgSendBitcoins(wlt, self, self)
  File "/Users/schiotz/src/BitcoinArmory/qtdialogs.py", line 4703, in __init__
    self.connect(btnSend, SIGNAL('clicked()'), self.createTxAndBroadcast)
AttributeError: 'DlgSendBitcoins' object has no attribute 'createTxAndBroadcast'
(yes, the error appears twice).

I get the same error when sending from a normal wallet, by the way.  Just tried it.

BUG 2:

Previously to this, I tried to export all transaction from an online wallet.  I chose File / Export Transactions, chose .csv format and selected a wallet (an unencrypted online wallet).  When I click export, a normal Save window appears, but it is dead.  It does not react to pressing any body, and I cannot get rid of it or quit Armory.  In the end I had to press Ctrl-C in the Terminal window where I started Armory.



I am running Mac OS X version 10.8.2 (Mountain Lion).  It is the first time I have any trouble with Armory's basic functionality (although I have never tried the export transaction menu point before).

EDIT:  I use the threading branch.
447  Economy / Web Wallets / Re: Blockchain.info - Bitcoin Block explorer & Currency Statistics on: November 21, 2012, 07:09:48 AM
You might want to change the layout for the tag thingy though. Now this looks like porn advertisement (which it is but you are not earning from showing it which it looks like).

Maybe a disclaimer is needed, I don't mind it being liberal what text is shown though.
Yes, it is not obvious at all that it is a tag associated with the address, it looks like it is just an ad being run by your site.  Perhaps you should add a label saying something like "owner-supplied address tag".  I am sure you can find a better wording Smiley
448  Bitcoin / Project Development / Re: ICBIT Derivatives Market (USD/BTC futures trading) - LIVE on: November 19, 2012, 08:15:41 PM
I missed the "fun" tonight by around 15 min. Sad

Has the evil manipulator returned, or is everything calm and serene?
449  Bitcoin / Bitcoin Discussion / Re: A newbie asks - how many % of your disposable money have you in BTC? on: November 19, 2012, 11:27:17 AM
To be exact, I bought them directly from a BTC exchange - BtcChina, instead of mining hard all day long with the sophisticated equipments.
So you are a sensible person! Smiley

Quote
My question now is that how many % of your disposable money have you already in BTC? Is 1/20th too small? thanks.
Around 2%  

Bitcoin may crash tomorrow.  Or it may make us rich (no, I don't really believe it will, but it could happen).

Until that happens, it is a fun and elegant experiment.
450  Bitcoin / Project Development / Re: ICBIT Derivatives Market (USD/BTC futures trading) - LIVE on: November 19, 2012, 11:22:34 AM
I think Fireballs explanation makes sense.

As far as I'm concerned the point has been clearly proven. If any fools want to part with their money from this point onwards they're welcome to do it, but they won't be able to claim that they "couldn't have known". Simple as that.

Nobody can place money at any exchange and claim that they "couldn't have known" if the site runs off with the money.  Unfortunately.  That severely limits how much money I place anywhere.  Sad

With ICBIT, the risk that they run off with my money is real.  So is the risk that they are closed by the authorities, or are hacked.  I still think the largest risk to my money is the trades I make.   Smiley
451  Bitcoin / Project Development / Re: ICBIT Derivatives Market (USD/BTC futures trading) - LIVE on: November 19, 2012, 10:09:56 AM
I lost a significant amount due to a manipulation, but instead of liquidating my position (although I was below the limit for a margin call), a second clearing occurred "due to high volatility" half an hour or an hour later.  You can probably still find the announcement in the Twitter feed.  Fireball quickly stopped doing this, probably he realised that this kind of ad-hoc manual interventions are not a good idea. 

Additional clearings are normal when market conditions are rapidly changing. They are pre-announced via official Twitter channel (displayed on the site's frontpage). I did an additional clearing because the market went too much against spot market and when the rate returned back (thanks to arbitragers) I did the additional clearing to move trading range back. No margin calls happened during that period because that would be greatly unfair to our clients.

I don't complain!!

I just thought you stopped doing it because any kind of manual intervention opens you to being attacked for being biased.  But I agree it was a good thing when it happened.
452  Bitcoin / Project Development / Re: [ANN] OnionBC - Anonymous online wallet on: November 19, 2012, 10:05:39 AM
TORwallet has already crapped in this pool .... you need to build you own one, put some more thought into the business model maybe?

I just can say again, we are NOT TORwallet. Dread Pirate Roberts could easily run off with all the money in silkroad, too. But he doesn't, because it's something big. Our escrow system will be something big, too, you will see.

You say you are not TORwallet.  Perhaps you are not, perhaps you are and are just back for more.  You offer the same service, both are anonymous, both hold all the customer funds.

An exchange or a site like SR can get a large revenue from fees compared to the amount they can gain by running away with the customers money, since most people don't store money there for long.  An online wallet is in the opposite situation.  And an anonymous online wallet - quite honestly, forget it!  Only a fool will place money with you guys - even if you are legit, you have set yourself up to look like scammers, including the sign saying "SUCKER-BAIT" in five-feet tall, burning letters.
453  Economy / Service Discussion / Re: Mt Gox question on: November 19, 2012, 09:26:14 AM
Bitstamp, Bitcoin-24, Intersango.  But then I am in Europe, transferring to these is cheap.  In the US I would consider using BitFloor and CampBX.  BitFloor's deposit and withdrawal support is often down, though.  And CampBX reserve the right to do all the nasty things MtGox are doing, but I have no experience with them, and don't know if they actually do it.

454  Bitcoin / Armory / Re: Armory - Discussion Thread on: November 19, 2012, 09:20:14 AM
For reasons described somewhere in the last 72 pages, I static compile python into the C++ utilities, ....

This makes me wonder if I am doing something wrong.  I have compiled the git source on Mac OS X, and start the program with
Code:
python ArmoryQt.py

Am I missing an executable I should run instead?  If I am starting the Python executable that will load libpython - if Armory then has the same library built-in, that should be asking for trouble.
455  Bitcoin / Project Development / Re: ICBIT Derivatives Market (USD/BTC futures trading) - LIVE on: November 19, 2012, 09:10:00 AM
You were caught scamming. Your sorry attempts to avoid that discussion by making ciuciu-esque attacks won't save you, you'll just end up with egg on your face on top of the original problem of having been caught scamming.

No.  You saw behavior that you find consistent with scamming.  Others saw otherwise - at least your proof is far from convincing.  It may be convincing what you saw, but certainly not what has been posted here or on the blog.

Quote
This is quite different from the scamsite behavior, wherein customer can see his account, can see the volume move, can see other orders for "other customers" being executed but his orders are ignored. Repeatedly. For the obvious reason that if the scamsite allowed actual customers to place orders in that magical interval it wouldn't be able to fix absurd prices. Duh.

I am an actual customer.  I have been able to place orders during these manipulation incidents.  And yes, I have also been in situations where I have not been able to place orders for a minute or so while other people obviously were.  But since absolutely nothing interesting happened during those times, I assume it was some kind of network problem.

If Fireball was behind these manipulations, why would he have undone them by an extra clearing one of the first times it happened?   I lost a significant amount due to a manipulation, but instead of liquidating my position (although I was below the limit for a margin call), a second clearing occurred "due to high volatility" half an hour or an hour later.  You can probably still find the announcement in the Twitter feed.  Fireball quickly stopped doing this, probably he realised that this kind of ad-hoc manual interventions are not a good idea. 

Quote
Isn't it fascinating how the big bad evil mean and mysterious manipulator suddenly got scared and left cause Mr. P wrote something on his blog? Isn't it grand how caught in between the rock of the article and the hard place of everyone being able to verify it for themselves the next day Fireball suddenly fixed the "exchange"? Tsk tsk.

That is indeed one interpretation.  Another one is that more and more people (including me) were trying to get a profit from the predictable manipulations, and the same day the spot market price moved against the manipulator.  In combination, this made it too expensive to continue manipulating the market - the manipulator lost a lot that evening!  Of course it did not help him that the clearing was delayed due to maintenance - whether that maintenance was real or just Fireball's excuse for thwarting him.

I'm concerned with rude spam by MPOE-PR (https://bitcointalk.org/index.php?topic=102333.0 ).
Other related people (smickles) are behaving quite good, and we had useful discussions over support email.

I will consult with [Tycho] about further actions.

Don't bother, the moderators will not do anything.  MPOE is entitled to her opinions, and is entitled to post them here.  We are entitled to disagree (and the shrill tone of her posts certainly don't help, even if her points were valid - which they might be!)

It would be very bad indeed if the moderators started censoring people calling a scam - even if they appear to be wrong!!!
456  Bitcoin / Armory / Re: Armory - Discussion Thread on: November 18, 2012, 07:51:51 PM
Not had a chance to try it yet, I keep getting an error during compilation I've not been able to fix.
Quote
g++: error: /usr/lib/libpython2.7.a: No such file or directory

I'll have a poke around later on to see if I can resolve it.


If you use some kind of Linux, you probably need to install the python-dev package (the name may vary, it contains stuff to compile Python extensions).
457  Economy / Service Discussion / Re: Mt Gox question on: November 18, 2012, 06:23:43 PM
They certainly reserve their right to freeze your account without warning until you provide ID documents.

So before you deposit anything, consider what you will do in that situation.  Even if you don't mind them knowing who you are (I am OK with that!) you may not want to email PDF's of personal documents to a foreign company.  If these documents are sufficiently to prove your ID, they seem to be sufficient to steal your ID too.  And I do mind setting myself up for identity theft.  Hence I have emptied my MtGox account and use other exchanges.

[edit for spelling]
458  Economy / Service Announcements / Re: [DOWN] Paysius and Coinapult Down temporarily due to server glitch on: November 18, 2012, 06:20:00 PM

Backups can only be so recent.

Erm... no...

Although I guess you call it off-site mirroring or something like that if it happens real-time.  Which IMHO is a minimal requirement for a payment infrastructure.  Not that I expect it to be implemented in even a minority of bitcoin-related sites.  But it should be.
459  Bitcoin / Project Development / Re: [BETA]Bitfinex - Leverage trading with bitcoins on: November 18, 2012, 01:52:35 PM
Who said that the platform is stolen? Undecided Or It is not allowed to make a platform based on an existing ? ... Wink

Not if the existing platform is copyrighted.

Bitcoinica imploded before I had even heard about it, but wasn't the code released as open source?  If so, it should be OK - at least if the guys releasing it as open source had the copyright when they did it (and I seem to remember that there is some controversy hidden here too).  If not, reusing code that someone else has copyrighted it ... well ... asking for trouble.
460  Economy / Service Announcements / Re: [DOWN] Paysius and Coinapult Down temporarily due to server glitch on: November 18, 2012, 01:13:26 PM
Corrupted wallet.dat + hacker girlfriend = win

Ouch!  That should never be necessary.  Remember the three ways to avoid loosing data: Backups, backups and backups.  Smiley
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!