Bitcoin Forum
April 26, 2024, 08:28:28 AM *
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 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 ... 259 »
261  Bitcoin / Bitcoin Discussion / Re: Bitcoin is an Enctypted Database in the Blockchain, it is not a Paper Ledger. on: September 19, 2022, 08:06:37 AM
One remark: the database isn't encrypted... Your wallet file is encrypted, and you can store the blockchain on an encrypted partition, but the ledger isn't encrypted: anybody who has access to the blocks can read them without decrypting them first. And if you don't have access to the ledger, you can install a full node and the other nodes will just send you all data you need.
262  Bitcoin / Bitcoin Technical Support / Re: Delete BItcoin Core software on Mac via Terminal on: September 15, 2022, 05:46:43 AM
--snip--

That will remove the bitcoin folder, but is important to remember that we have a bitcoin hidden folder with the configuration and the blocks file. That folder is on our home folder and to delete it we can use:

Code:
rm -rf .bitcoin

Or if we want to do it outside the folder we can use:

Code:
rm -rf ~/.bitcoin

If we don't delete that folder, the next time we install bitcoin and run it, it will keep the old configuration.

100% correct, but i assumed the OP didn't yet run bitcoind. But you are correct, i should have asked if he did already.
@OP: if you ran bitcoind, you have to follow seoincorporation's advice aswell (unless you ran bitcoind and sent funds to this wallet), if you did not run bitcoind my initial advice was sufficient.

EDIT: if you ran bitcoind, it never hurts to copy your wallet.dat BEFORE deleting ~/.bitcoin, it's always a good idear to keep any wallet you ever created in your archive... You never know if you passed along an address generated by a wallet.
263  Bitcoin / Bitcoin Technical Support / Re: Access testnet not possible on: September 14, 2022, 06:17:49 AM
Last night i started thinking about this topic, and i realized we didn't start from the beginning and jumped right into trying to fix the problem you were posting.

The initial question in this topic should have been: "what are you trying to do?".
Why do you need to mine a block, are you going to setup a solo mining operation or do you just want to test out your setup on the testnet, or maybe your goal is something else?

If it's the first case (you wanting to solo mine), do realize this is a difficult setup... I've set up solo mining operations on the testnet in the past, and it's quite hard to get things up and running, and keep them running over a longer time. There are solo mining pools that ask a very moderate mining fee, it might be a good first step to use them instead. Oh yeah, you'll need a recent ASIC, basic knowledge and dirt cheap electricity to pull this off...

If it's the second case (you wanting to test your setup), you don't need to mine a block, you can just claim some tBTC from a couple tBTC faucets...

If your goal is something else, i wonder if you'd be willing to share said goal...

It's just that in numerous occasions, i've seen people coming to the forum asking a bunch of questions, but when they finally say what they want to accomplish, we immediately tell him he/she was taking the completely "wrong" approach to solving the problem in the first place.
264  Bitcoin / Bitcoin Technical Support / Re: Access testnet not possible on: September 13, 2022, 01:40:14 PM
--snip--
"Switching to testnet mode" means to work with the testnet blockchain. That one has to be downloaded and so on. You need a node.
Even more, I certainly hope you have an ASIC for mining the block you want, the diff is afaik far too big for RasPi to mine.

correct, and IIRC, the block reward is really low nowadays aswell...

But, just FYI, you could follow a tutorial like this one:
https://number1.co.za/running-a-mainnet-and-testnet-on-the-same-bitcoin-node/
to run 2 nodes under the same linux account.

You could also add a new user and run your testnet node under this second user... That's how i do it... 2 users each running a full node: one user running a node on the main net, the other on the testnet.

But still, yeah, you'll need an ASIC to mine on the testnet...

If you want tBTC, you can use a tBTC faucet.
265  Bitcoin / Bitcoin Technical Support / Re: Access testnet not possible on: September 13, 2022, 01:26:51 PM
ah okay. But now this problem occurs:
Code:
bitcoin-cli -testnet listunspent

Output:
Quote
error: timeout on transient error: Could not connect to the server 127.0.0.1:18332

Make sure the bitcoind server is running and that you are connecting to the correct RPC port.

Then the initial question remains: ARE you running a node on the testnet? You cannot run a node on the main net, and just expect bitcoin-cli -testnet to work...

could you execute
Code:
lsof -i :18332

At least, i'm assuming you're working on linux, right? I have no idear how to check if you're listening on a port on windows...
EDIT: you're talking about Raspiblitz, that's linux Wink
266  Economy / Reputation / Re: wwzsocki suspected alt of ziyush on: September 13, 2022, 01:20:24 PM
--snip--

I've never posted feedback on. wwzsocki. The only user that contacted me a few months earlier was     ziyush.

He's probably talking about your trustlist instead of negative feedback on his trustpage:
https://loyce.club/trust/2020-08-22_Sat_05.07h/897509.html

But when he says he has contacted you before, but you have no record of such a PM might be an indication of being an alt... Whether or not it's sufficient proof: i have no idear...
267  Bitcoin / Bitcoin Technical Support / Re: Access testnet not possible on: September 13, 2022, 12:59:09 PM
Yeah, I know but it does not happening anything
Code:
bitcoin-cli -testnet
Output:
Quote
error: too few parameters (need at least command)

bitcoin-cli need options... For example
Code:
bitcoin-cli -testnet listunspent
bitcoin-cli by itself does nothing... you need to tell it what you want to do Smiley
268  Bitcoin / Bitcoin Technical Support / Re: Access testnet not possible on: September 13, 2022, 12:51:46 PM
Code:
bitcoin-cli --help

output:
Code:
  -testnet
       Use the test chain. Equivalent to -chain=test.


But, if you only have one instance running, and you run bitcoin-cli as the same user you're running bitcoind, you shouldn't need the -testnet option. You just add
"testnet=1" to "~/.bitcoin/bitcoin.conf", start your node, and then use bitcoin-cli without the "-testnet" option.
You ARE running a testnet node, right? You can't run your node on the main net, and magically use the bitcoin-cli on the testnet...
269  Bitcoin / Bitcoin Technical Support / Re: Delete BItcoin Core software on Mac via Terminal on: September 13, 2022, 08:08:15 AM
Hello,

I am relatively new. I just cloned the bitcoin core software via
Code:
git clone https://github.com/bitcoin/bitcoin.git
in my MAC terminal. Where do I find all the packages and data related to this download in my Finder? I want to delete this whole download again. Or is there a command how I can delete all the data via a command in the Terminal? Thanks for your help.
Best,

I'm not a mac user myself, but i assume it's exactly the same as on other *nix systems.
First make sure you're in the correct folder:
Code:
ls -ltrh *bitcoin*

The output should show the bitcoin folder you cloned, verify the timestamp!

IF you see the folder listed AND it's timestamp corresponds to the time where you cloned bitcoin AND you're completely sure you want to delete the folder, execute:
Code:
rm -Rf bitcoin/

Now, a word to the wise: it's imperative you add the folder you want to delete at the end of this command (in this case bitcoin/)... rm is extremely powerfull, especially when executed as root...
270  Economy / Trading Discussion / Re: What is Coin Flashing and Its Real use case on: September 13, 2022, 07:30:39 AM
I have heard this term before, always in the context Potato Chips already described: it's a popular (old) scam method given a new name to lure in new victims.
271  Economy / Service Discussion / Re: Wallet transaction notifications vs Smart alerts on: September 13, 2022, 06:51:21 AM
Hey folks, do you all use any transaction notification services to keep track of the ins and outs of all of your wallets?

Also, how many of you set up smart alerts to track projects or whales?

No and no.
I don't see any reason to do so, in neither case. If i expect payment from somebody, i'll open my wallet to see if i received said payment. If i were to get an alert of an incoming transaction to my wallet, i'll see said transaction the next time i open my wallet anyways. If i were to see an unauthorized outgoing transaction, it's to late anyways.

And as for whales: i don't care about those movements...
272  Economy / Games and rounds / Re: $25 Giveaway in BTC on: September 12, 2022, 11:59:43 AM
I'm going to try my luck aswell...  Grin

bc1ql5shq8aevnuttxuxfsawxzn5ml5s5wvfvqnluj
273  Economy / Service Discussion / Re: Did ChipMixer made hundreds of mllion of dollars? on: September 12, 2022, 05:40:42 AM
@PrimeNumber7: true... But in my particular usecase, i would care less that the government knows how much funds i hold (i'm not saying i wouldn't care at all, it's just not my primary objective to hide my funds from the government). My biggest concern is criminals (and beggars). I'm not doing anything illegal, best case scenario the mixer is run by an honest company and nobody knows how much funds i hold, if it's run by a 3 letter agency i would be dissapointed, but i'm pretty sure a 3 letter agency will not come to my front door with a shotgun or a crowbar to threaten my family and steal my funds.

But once again, that's my usecase... It doesn't have to map with the usecase of other users.
274  Economy / Service Discussion / Re: Did ChipMixer made hundreds of mllion of dollars? on: September 09, 2022, 01:41:23 PM
--snip

the information is not clear at all that he charges 17% he should put some warning or put a table of fees

like 50 -500$ - 15% FEES

200$ - 1000$ - 5% FEES

and so on.

--snip--

If they'd print such a table, they'd be lying.
Since you keep on giving dollar values, i'll break it down in dollar values. Be advised that the chipsizes in BTC are not equal to the chipsizes in FIAT, so a $5 bill does not match an actual chipsize.

This is a service that has $5, $10, $50 and $100 bills. They do not deal in metal change coins. If you mix $6, they'll give you a $5 bill and you have donated $1 (since they don't have one dollar bills). If you would have send $15, you would have gotten a $5 and a $10 bill back, and you would have payed no fee.

This is clearly explained on multiple spots on chipmixer's site.

What i see is that you have accused every user of every mixer to be a criminal, but you failed to provide proof.
You have also accused chipmixer of scamming users that mix huge amounts without providing proof.

Now go ahead and make this all about chipmixer campaign users that are protecting chipmixer without providing any evidence for your accusations.
275  Economy / Service Discussion / Re: Did ChipMixer made hundreds of mllion of dollars? on: September 09, 2022, 11:14:33 AM
So what are you proposing? That the government shuts down ChipMixer as well just because criminals are able to use it(Assuming they could)? Totally ignoring the day-to-day people that just want privacy?

the day-to-day people you talk about that want pricacy are all criminal. not that I have issue with them.
But stick to the fact.  Why else would you want a bitcoin mixer? Only for tax evasion, money laundering and other illegal activities.

I use chipmixer because i think it's nobody's business to know how much funds i hold and where i hold them. This protects my family from a $5 wrench attack.
You called me a criminal, please provide proof that i did anything illegal in my current jurisdiction.
276  Economy / Service Discussion / Re: Did CheapMixer made hundreds of mllion of dollars? on: September 09, 2022, 09:29:24 AM
You're linking to "chipmixer", not "cheapmixer". Why would you care how much money they make? They run a business, they're providing a service, kudos for them if they make some money from their business setup...

Sure i'm in their sigcampaign, which doesn't make me completely impartial... But still, i can honestly say i'd give the exact same response if i wasn't affiliated with them in any way.
277  Bitcoin / Bitcoin Discussion / Re: What will be the Bitcoin price if "self-reporting of every wallet address" on: September 04, 2022, 11:01:02 AM
Nobody knows what it'll do for the price...

If it's just the US government trying to clamp down on crypto users again and again by doing stuff like this, i doubt it'll be good for the price tough.
278  Other / Beginners & Help / Re: New to it. on: September 02, 2022, 12:11:12 PM
"I have my graphic cards ready to start, where do I start mining and which is the most reasonable way to start it?"

Well, you're in the bitcoin subforum, so i'll give you a bitcoin answer: you can not mine with a graphics card anymore... Sure, in theory you can, but the hashrate is SOOOOOOO low compared to the difficulty, odds are you won't be able to solve a single share in a reasonable timeframe (if you're pool mining).
279  Other / Meta / Re: [In Development] Lightning forum tips on: September 01, 2022, 11:08:00 AM

Code:
1. I would want such service: Y
2. I have a Lightning node running: Y
3. If yes, I use:c-lightning
4. If I don't have a Lightning node running, I'd still want a tipping service with an option to not hold custody of funds: Not Applicable
5. I prefer paying in: keysend
6. I want my tipping be shown just as merit (i.e., "merited by BlackHatCoiner (8)"): Y
7. If such service was available I'd submit my node to earn tips: Y
280  Other / Beginners & Help / Re: New to it. on: August 31, 2022, 01:44:49 PM
Simple question where do I start with Bitcoins?

right here, on this forum  Wink

But kidding aside, it's up to you... Why are you interested in bitcoin? The technical aspects, the fact that it's a method of sending and receiving funds, or are you looking to invest?

If it's the technical aspects, i'd probably tell you to read the whitepaper, or one of the many technical books... And if you have questions afterwards, you can come to this forum to ask them.

If you're not interested in the technical aspects, i'd still urge you to watch a couple introductory movies, afterwards you can download a (testnet) wallet, exchange some funds and start right away...

Just make sure that you always remember that crypto transactions are irreversible, and there are many scammers (there are scams outside of the crypto community aswell, but since crypto is relatively new, the scammers seem to get away with more than in an offline environment). The fact that crypto is irreversible and you don't need to meet up IRL to send funds makes the scammers even more bold... If you're suspecting something is fishy, it never hurts to come to this forum and ask advice before sending money.
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 ... 259 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!