Beiträge von trepex

Als Gast bekommst du nur einen geringen Teil der Geschehnisse zu sehen.
Registriere dich jetzt kostenfrei und erblicke das volle Spektrum der eMark Gemeinschaft!

    Wow, ebay ist immer wieder für eine Überraschung gut:

    http://www.ebay.de/itm/40-Deutsch…=item3f2ce2fb56
    40 Deutsche eMark Online-Währung (wie Bitcoin), DEMcoins, kein Bitcoin/Lite
    Preis: EUR 32,00 (sofort kaufen)

    Auch die Aktion sieht spannend auf:
    http://www.ebay.de/itm/40-Deutsch…=item3f2cd0bbb4
    Geboten aktuell: 5,49€ (läuft aber auch noch 7 Tage)

    Und: Nein, die Auktionen sind nicht von mir! Sonst wäre der Verkäufer "trepex".


    ... die Umrechung in EUR mach ich mal ganz Frech an dem BTC/EUR-Durchschnittspreis von mt.gox fest, damit der ein bissel höher wird 8)

    Sicher gut gemeint, ich bin trotzdem dafür (evt. zusätzlich) z.Bsp. den Kurs von
    https://bitcoinaverage.com/#EUR
    zu verwenden. Das Ausklammern von MtGox halte ich aktuell nicht mehr für notwendig. Der Spread
    ist nicht mehr so gross wie früher und man kann unterdessen auch teurer als auf MtGox woanders verkaufen.

    Und natürlich: Sehr gute Initiative!!! Besorg dir mal eine (Sub-) Domain!

    Zitat von Banthex link


    Bin gerade nur zu doof bitcoind mit -daemon zu starten. Wenn ich starte tut sich in der kommandozeile gar nix aber die exe is in den tasks.

    Es passiert gar nichts. Und das ist gut/gewollt.
    Du solltest eine config haben, die einen RPC/remote Zugriff erlaubt.
    Nimm dir dann doch ein Script wie dieses (Perl Beispiel), um zu sehen, ob dein Daemon läuft
    und du mit ihm reden kannst:

    #!/opt/local/bin/perl

    use JSON::RPC::Client;
    use Data::Dumper;

    my $client = new JSON::RPC::Client;

    $client->ua->credentials(
    '192.168.178.***:6666', 'jsonrpc', '***' => '***' # REPLACE WITH YOUR bitcoin.conf rpcuser/rpcpassword
    );

    my $uri = 'http://192.168.178.***:6666/';
    my $obj = {
    method => 'getinfo',
    params => [],
    };

    my $res = $client->call( $uri, $obj );

    if ($res){
    if ($res->is_error) { print "Error : ", $res->error_message; }
    else {
    print Dumper($res->result);
    }
    } else {
    print $client->status_line;
    }

    Hello,

    I created a static compiled binary of the eMarkd:

    https://mega.co.nz/#!IplC2IwS!eWU…JO7C3ROhAbdFhUU
    md5 Checksum: $ md5 eMarkd_MacOSX_static_libs
    MD5 (eMarkd_MacOSX_static_libs) = da4d960ecfd4fb4fecf98f1f901ee4d8

    Please note that this is not a GUI version. It's mainly used for solo mining. But you can check your
    balance with this small perl script:

    Don't forget the change the IP and user/pass.

    And here another case - with blocknumber now:

    Time : Blocknumber @ Networkhash in Gh new minted + balace = sum + comment
    -----------------------------------------------------------------------------------------------
    Thu Nov 7 18:24:55 2013: 19471 @ 1161.29 Gh 750.004 + 14900.111 = 15650.115
    Thu Nov 7 18:46:58 2013: 19472 @ 1078.12 Gh 800.005 + 14900.111 = 15700.116 + Block found
    Thu Nov 7 18:49:14 2013: 19481 @ 1088.88 Gh 650.004 + 15000.111 = 15650.115

    I normally have one line for each block. But what happened here? I did miss 8 blocks! Or some other problem did
    show up as block 19462 took very long for my setup.

    How is this data generated?
    Ugly! I am not a programmer. But I did work doing QA/support for many years.
    I am polling the eMarkd every 6s and check if the networkhashrate did change, if it did change, I collect
    the current account ballace by using the "getinfo" command.

    Hi,

    I have an eMarkd client on a Mac Mini running. With the same wallet.dat (keys) I have the Windows Binary active.
    I am solo mining against the eMarkd.
    A script is polling the eMarkd (for networkhashrate & dem balance). Any change in the network balacen triggers some
    logic (that is independent of the eMarkd) and also logs my balace.

    Let me show you what I did observe (rounded network hashrate in Gh, newmint, balance)
    Thu Nov 7 09:15:24 2013: 1121 Gh 1000.000 + 12850.096 = 13850.096 + found a block
    Thu Nov 7 09:37:52 2013: 1039 Gh 1050.001 + 12850.096 = 13900.097 + found a block
    Thu Nov 7 09:40:23 2013: 885 Gh 1100.001 + 12850.096 = 13950.097 + found a block
    Thu Nov 7 09:41:14 2013: 931 Gh 1050.001 + 12850.096 = 13900.097
    Thu Nov 7 09:43:27 2013: 932 Gh 1050.001 + 12850.096 = 13900.097
    Thu Nov 7 09:44:58 2013: 961 Gh 1050.001 + 12850.096 = 13900.097
    (sorry for not printing blocknumbers, I will improve my script!)

    So somewhere between 9:40:23 and 09:41:14 I lost 50 DEM.
    There is no indication what happened in the Win emark-qt client.
    The DEM address used: NRcAQ3hHqtreJyH5uPGD7ZomYWWxzz7GaN

    The same problem happened with solo mining against the Win emark-qt software like a week ago.

    The Win popup showed an incoming transaction (block found) but no log-entry about any problem or the
    found block could be found using the emark-qt client.

    trepex