Bitcoin Forum
May 04, 2024, 09:09:28 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 [105] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 ... 247 »
2081  Economy / Scam Accusations / Re: Project-Bit (@ProjectBitCOM) confirmed MALICIOUS Software: Proof & documentation on: May 08, 2013, 12:18:45 AM
Zooey asked me to look at this.
I'm no security expert, so who knows if I'm missing something, but...

I don't see any evidence of malware here or in the reports, just a lot of technical information that tells nothing about the nature of the webpage/software.

Since I could be wrong, I did not personally open the "malicious" links in question, just in case, so there may be something obvious there I didn't see too.

Also, even if an antivirus vendor told me there was something malicious (which again, I don't see), I would take it with a grain of salt.
One thing anyone involved with Bitcoin mining should know, is that most antivirus software is itself malicious, labelling even legit mining software as viruses and malware when they are not.

Finally, I hate spam as much as the next person.
Please don't support spammers, whether their products/services are malicious or not.

Edit: Ok, I clicked the "malicious" link, and it's just a redirect to an EXE download. Obviously it'd be stupid to run it.
Edit: VirusTotal accuses this EXE of being a virus
2082  Bitcoin / Project Development / Re: [ANN] Bitcoin Press Center - an inclusive, open and feature rich site for media on: May 07, 2013, 11:01:10 PM
I don't see a way to upvote or downvote people...
2083  Bitcoin / Mining software (miners) / Re: [ANN] Eloipool - FAST Python3 pool server software - GBT/stratum/dyntarget/proxy on: May 07, 2013, 08:23:17 PM
Mining proxy talks to Eloipool and Namecoind, nothing else.

so we have this configuration


Code:
client miner <--->  mining proxy <--> eloipool  <---->   bitcoind
                            |
                             | -------> namecoind ?
 


mining proxy command

Code:
python merged-mining-proxy  -w 8330 -p http://ssecreteloipool:222@127.0.0.1:9947/ -x http://namecoinrpc:manecoinrpcpass@localhost:9377/

eloipool config.py


Code:
# Secret username allowed to use setworkaux
SecretUser = "ssecreteloipool"

# Addresses to listen on for JSON-RPC GBT/getwork server
JSONRPCAddresses = (
        ('', 9947),
)



namecoind config

Code:
rpcuser=namecoinrpc
rpcpassword=manecoinrpcpass
 
 
 rpcport=9377


and normal configuracjion connection to bitcoin
Code:
....




why i cannot connect /point miner to 8330 port ? and still get this errors

Quote
001-0: ztex_ufm1_15d4-0001-02-01-1: Error: Invalid length of string: Disabling URL http://serverurl.com:8330 for 60s
...
...
..


miner with eloipool works perfect

but with merged mining configuracion still cannot connect minner to mining proxy ...

what should i change in my configuration  ?

No.

Miner talks to Eloipool.
Eloipool talks to bitcoind and MMP independently.
MMP talks to namecoind.
2084  Bitcoin / Bitcoin Discussion / Re: Bitcoin Developers Adding Minimum Transaction Output Size! - to Gavin on: May 07, 2013, 07:21:27 PM
To be fair, 0.8.2 will be the one silently dropping transactions that were valid to all clients before that. Transaction relaying just became more of an issue...
It's not blocking them (they're still valid), just declining to participate in them.
This isn't the first version to opt out of relaying spam, either: it's been done since 0.3.19 or so.
2085  Bitcoin / Mining software (miners) / Re: [ANN] Eloipool - FAST Python3 pool server software - GBT/stratum/dyntarget/proxy on: May 07, 2013, 07:16:48 PM


The only supported scenario is:

Code:
client miner <--> eloipool <--> bitcoind
                            |-> mining proxy <--> namecoind


so if 
Code:
 client miner <--> eloipool <-->  mining proxy <--> (bitcond + namecoind) 
   is WRONG


how to connect eloipool to bitcoind AND to mining proxy  ? 
Code:
 client miner <--> eloipool <-->  (mining proxy  + namecoind) <--> bitcoind  ?  

i see that normally mining proxy "split" connection into two daemon (BTC, NMC)

but how to do this in eloipool ?


[/quote]Mining proxy talks to Eloipool and Namecoind, nothing else.
2086  Bitcoin / Mining software (miners) / Re: BFGMiner 3.0.2: modular ASIC/FPGA, GBT, Strtm, RPC, Lnx/OpnWrt/PPA/W64, BFLSC on: May 07, 2013, 04:49:28 AM
Got a 7870(Pitcairn) for my desktop (Win 8 - 64 bit) while waiting for my old card to go in for warranty replacement. Not overclocking for now, because my desktop isn't great on ventilation.

Running 13.4 Catalyst and APP SDK 2.8

On my dedicate mining machine (Win 7 -32 bit) and with my previous desktop card (6770), I used BFGMiner with no issues.

Now, BFGMiner (3.0.2 win64) crashes out instantly unless I am using poclbm, which even though the console hasrate is high, it is giving me garbage performance on every pool I try it on (Eligius, BTCGuild, Deepbit). I assume this is due to poclbm and stratum issues.

If I use CGMiner, with any kernel, including poclbm, there are no issues including with stratum, other than poclbm tends to overstate its hashrate in the console.

Any ideas on what I can do to get BFGMiner to run? I would rather use the same client for all my machines.
Compile with debugging information:
Code:
./configure CFLAGS='-O0 -ggdb' && make  # note the OH ZERO
Then run it in gdb:
Code:
gdb --args ./bfgminer -T -D <your options here>
When it crashes, it will drop you to a gdb prompt; run:
Code:
thr app all bt
... and pastebin the output.
2087  Bitcoin / Mining software (miners) / Re: [ANN] Eloipool - FAST Python3 pool server software - GBT/stratum/dyntarget/proxy on: May 06, 2013, 09:12:54 PM



mining proxy need setworkaux so i think 1) will be ok  ?

so why in first scenario i get errors on client miner ?

The only supported scenario is:

Code:
client miner <--> eloipool <--> bitcoind
                            |-> mining proxy <--> namecoind


you mean


client miner  <---->  eloipool <----->    mining proxy <----> bitcoind
                                                                 |
                                                                  | ---->   namecond



so i must use patched bitcoind (with setworkaux function) ?

or maybe




client miner  <---->  eloipool <----->    mining proxy <----> eloipool  <--- > bitcoind
                                                                 |
                                                                  | ---->   namecond


? Smiley

No, I meant exactly what I said...
2088  Bitcoin / Bitcoin Discussion / Re: Roger Ver and Jon Matonis pushed aside now that Bitcoin is becoming mainstream on: May 06, 2013, 09:00:41 PM
Can someone with wiki permissions create a page "Press contacts"?
Anyone can create pages on the wiki... just need to go through the antispam stuff.
Someone else is already working on a bitcoinpresscenter.org or such, though, so probably a good idea to see how that works out first?
2089  Bitcoin / Mining software (miners) / Re: Decentralized mining protocol standard: getblocktemplate (ASIC ready!) on: May 06, 2013, 11:23:34 AM
Hello,
 i am looking at making my own poll app based on GWT, but got confused at some pint and still can't figure it out. I've read BIP 22 and 23, but some real world example would be welcome.
bitcoind returns:
Code:
{
    "version" : 2,
    "height" : XXX,
    "previousblockhash" : "X...X",
    "noncerange" : "00000000ffffffff",
    "sizelimit" : 1000000,
    "sigoplimit" : 20000,
    "target" : "X...X",
    "bits" : "12345678",
    "mintime" : XXX,
    "curtime" : XXX,
    "mutable" : [
        "time",
        "transactions",
        "prevblock"
    ],
    "transactions" : [
        {
...
        }
    ],
    "coinbaseaux" : {
        "flags" : "0123456789abcdef"
    },
    "coinbasevalue" : 2500000000,
}

Is the first transaction listed the coinbase one (guess not) or i should create my own? If the later - how do i make it in order to contain the flags (and what do they mean)?
If there is no "coinbasetxn" key, you need to make it.
https://en.bitcoin.it/wiki/Protocol_specification#tx
2090  Bitcoin / Pools / Re: [2000 GH] Eligius: Decntrlzd, ASIC-rdy, 0Fee CPPSRB, 0reg, BTC, 877 # support on: May 06, 2013, 03:49:03 AM
Pool is down for me. Anyone else?

Not stop "Abandoning stale search to restart"
This seems like a bug in BFGMiner - are you using the latest version?
2091  Bitcoin / Mining software (miners) / Re: BFGMiner 3.0.2: modular ASIC/FPGA, GBT, Strtm, RPC, Lnx/OpnWrt/PPA/W64, BFLSC on: May 06, 2013, 01:38:35 AM
I tried running from command line and it shows no errors.  The window closes and windows says it errored and closed.

Is there any other way to capture any data as to what is happening?
Run with the --debug --text-only options.

If it's crashing, though, it's probably an OpenCL/driver issue.

What opencl/driver combo do you recommend?  I am running the latest from AMD on the 64 bit system

Thanks
Personally, I'd run Linux and put each GPU in its own KVM instance with the last driver/SDK before the card was replaced by the next series...
2092  Bitcoin / Mining software (miners) / Re: [ANN] Eloipool - FAST Python3 pool server software - GBT/stratum/dyntarget/proxy on: May 05, 2013, 09:34:05 PM
It's not a proxy. Miners continue to talk to Eloipool.

idont understand your suggestion Tongue


maybe it should be


1)
client minrer <--->  mining proxy <--> eloipool  <---->   bitcoind
                                    |
                                     | -------> namecoind ?



or


2)

client miner  <---->  eloipool <----->    mining proxy <----> bitcoind
                                                                 |
                                                                  | ---->   namecond




mining proxy need setworkaux so i think 1) will be ok  ?

so why in first scenario i get errors on client miner ?

The only supported scenario is:

Code:
client miner <--> eloipool <--> bitcoind
                            |-> mining proxy <--> namecoind
2093  Bitcoin / Mining software (miners) / Re: BFGMiner 3.0.2: modular ASIC/FPGA, GBT, Strtm, RPC, Lnx/OpnWrt/PPA/W64, BFLSC on: May 05, 2013, 03:14:39 AM
I tried running from command line and it shows no errors.  The window closes and windows says it errored and closed.

Is there any other way to capture any data as to what is happening?
Run with the --debug --text-only options.

If it's crashing, though, it's probably an OpenCL/driver issue.
2094  Bitcoin / Mining software (miners) / Re: BFGMiner 3.0.2: modular ASIC/FPGA, GBT, Strtm, RPC, Lnx/OpnWrt/PPA/W64, BFLSC on: May 05, 2013, 02:27:30 AM
I am having an issue with 3.0.2 or any version for that matter on a new machine.  The machine is a 64bit windows 7 and it is a new build whenever I run bfgminer on it.  I enter the pool and credentials and then it errors and closes.  I have even tried different pools that are working on other machines.  I don't know where to start looking for what is causing this or what is missing.  I have even ran the latest 2.8.10 64bit build.

Any help or suggestions???
Run it from a commandline to see what the error is...
What mining device are you trying to use?

54Gh/s bASIC Bitcoin Mining Devices
Pre-Order Yours Today!
Might want to remove this ad for a dead/failed product...
2095  Bitcoin / Mining software (miners) / Re: [ANN] Eloipool - FAST Python3 pool server software - GBT/stratum/dyntarget/proxy on: May 04, 2013, 07:42:01 PM
It's not a proxy. Miners continue to talk to Eloipool.
2096  Bitcoin / Bitcoin Discussion / Re: Roger Ver and Jon Matonis pushed aside now that Bitcoin is becoming mainstream on: May 04, 2013, 03:31:37 AM
Back on topic...

http://www.wired.com/dangerroom/2012/12/most-dangerous-people/?utm_source=dlvr.it&utm_medium=twitter&pid=1696

"The Wiki Weapon project is not the work of a dispassionate techie seeking to push the outer limits of modern technology. Instead it is a blatant, undisguised attempt to radically alter our system of government."

This is a perfect example of exactly why Bitcoin would be harmed by listing people like Matonis on anything portrayed as official.

Bitcoin is the work of "passionate techies seeking to push the outer limits of modern technology", but having radicals as "spokespersons" would be an "undisguised attempt to radically alter our system of government."
2097  Bitcoin / Mining software (miners) / Re: BFGMiner 3.0.2: modular ASIC/FPGA, GBT, Strtm, RPC, Lnx/OpnWrt/PPA/W64, BFLSC on: May 04, 2013, 02:43:28 AM
@Luke_jr I had to uninstall the ppa and compile it from source, but it works great. Now I just need my jalapeno to get here. I'm sending a donation your way. Thanks for the great work you've done!
What was the problem with the PPA?
2098  Bitcoin / Bitcoin Discussion / Re: Roger Ver and Jon Matonis pushed aside now that Bitcoin is becoming mainstream on: May 03, 2013, 11:07:44 PM
If you require a threat/gun to be obedient, that is your problem.

If you're obedient just because you like to be, that's your problem.

I hear you're a Christian. You do know that when Jesus said "Render unto Caesar...", what he was actually saying was the nothing is Caesar's and we don't owe anything to the government.

I say that only because some Christians get confused and think the suggestion was that Caesar should get taxes. Far from it.
Your misinterpretation is crazy, and contrary to the infallible teaching magisterium of the Church:

(bold mine)
Quote from: The Gospel according to St. Matthew, chapter 22 verses 15-21
✝*Then the Pharisees departing, consulted among themselves for to entrap him in his talk. ✝And they send to him their disciples with the Herodians, saying, Master, we know that thou art a true speaker, and teachest the way of God in truth, neither carest thou for any man. for thou dost not respect the person of men. ✝Tell us therefore what is thy opinion, is it lawful to give tribute to Caesar, or not? ✝But JESUS knowing their naughtiness, said: What do you tempt me, Hypocrites? ✝Show me the tribute coin. And they offered him a penny. ✝And JESUS saith to them; Whose is this image and inscription? ✝They say to him: Caesar's. Then he saith to them, Render therefore the things that are Caesar's to *Caesar: and the things that are Gods, to God.
Quote from: Annotations for Matt 22:21, Rheims New Testament
21. To Caesar.] Temporal duties and payments exacted by worldly Princes must be paid, so that God be not defrauded of his more sovereign duty. And therefore Princes have to take heed, how they exact: and other, how they give to Caesar, that is, to their Prince, the things that are due to God, that is, to his Ecclesiastical ministers. Whereupon St. Athanasius receiveth these goodly words out of an epistle of the ancient and famous confessor Hosius Cordubensis to Constantius the Arian Emperor: Cease I beseech thee, and remember that thou art mortal, fear the day of judgment, intermeddle not with Ecclesiastical matters, neither do thou command us in this kind, but rather learn them of us. To thee God hath committed the Empire, to us he hath committed the things that belong to the Church: and as he that with malicious eyes carpeth thine Empire, gainsaith the ordinance of God: so do thou also beware, lest in drawing unto thee Ecclesiastical matters, thou be made guilty of a great crime. Is is written, Give ye the things that are Caesars, to Caesar: and the things that are Gods, to God. Therefore neither is it lawful for us in earth to hold the Empire, neither hast thou (O Emperor) power over incense and sacred things. Athan. Ep. ad Solit. vita agentes. And St. Ambrose to Valentinian the emperor (who by the ill counsel of his mother Justina, an Arian, required of St. Ambrose to have one Church in Milan deputed to the Arian Heretics) saith: We pay that which is Caesars, to Caesar: and that which is Gods, to God. Tribute is Caesars, it is not denied: the Church is Gods, it may not verily be yielded to Caesar: because the Temple of God cannot be Caesars right; which no man can deny but it is spoken with the honor of the Emperor. For what is more honorable than that the Emperor be said to be the son of the Church? For a good Emperor is within the Church, not above the Church. Ambr. lib. 5. Epist. Orat. de Basil trad.
Quote from: Annotations for Mark 12:17, Rheims New Testament
17. To God.] These men were very circumspect and wary to do all duties to Caesar, but of their duty to God they had no regard. So Heretics, to flatter temporal Princes, and by them to uphold their heresies, do not only inculcate mens duty to the Prince, dissembling that which is due to God: but also give to the Prince more than due, and take from God his right and duty. But Christ allowing Caesar his right, warneth them also of their duty toward God. And that is it which Catholics inculcate, Obey God, do as he commandeth, Serve him first, and then the Prince.

Quote from: Rheims New Testament: The Censure and Approbation
Cum huius versionis ac aeditionis authores, nobis de fide & eruditione sint probč cogniti, aliique S. Theologiae & linguae Anglicanae peritissimi viri contestati sint, nihil in hoc opere reperiri, quod non sit Catholicae Ecclesiae doctrinae, & pietati consentaneum, vel quod ullo modo potestati ac paci civili repugnet, sed omnia potius veram fidem, Reip. Bonum, virtaeque ac morum probitatem promovere: ex ipsorum fide censemus ista utiliter excudi & publicari posse.

PETRUS REMIGIUS Archidiaconus maior Metropolitanae insignes Ecclesiae Rehemsis, Iuris Canonici Doctor, Archipeiscopatus Rhemensis generalis Vicarius.

HUBERTUS MORUS, Rhemensis Ecclesia Decanus, & Ecclesiastes, & in sacratissimae Theologiae facultae Doctor.

JOANNES LE BESGUE, Canonicus Rhemensis, Doctor Theologus, & Canceliarius Academiae Rhemensis.

GUILELMUS BALBUS, Theologiae professor, Collegis Rhemensis Archimagister.

S. August. Lib. I. C. 3. De serm. Do. in monte.

Paupertate spiritus pervenitur ad Scripturarum cognitionem: ubi oportet hominem semitem praebere, ne pervicacibus concertationibus indocilis reddatur.

We come to the understanding of Scriptures through povertie of spirit: where a man must show himself meek-minded, lest by stubborn contentions, he become incapable and unapt to be taught.
2099  Bitcoin / Pools / Re: [2000 GH] Eligius: Decntrlzd, ASIC-rdy, 0Fee CPPSRB, 0reg, BTC, 877 # support on: May 03, 2013, 10:27:19 PM
Update with pool: everything was breaking everywhere, so I rushed to get the new server working.
New server Postgres is screwed up, so I set it up logging shares to a textfile for now.
Payouts and stats are down as a result, but hopefully it won't take long to recover from this mess.
2100  Bitcoin / Bitcoin Discussion / Re: Roger Ver and Jon Matonis pushed aside now that Bitcoin is becoming mainstream on: May 03, 2013, 08:35:28 PM
If you require a threat/gun to be obedient, that is your problem.
Pages: « 1 ... 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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 [105] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 ... 247 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!