Bitcoin Forum
May 21, 2024, 03:24:02 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: 1 2 [All]
  Print  
Author Topic: Nuova versione di Bitcoin Core - v0.9.0 - Desktop client  (Read 3870 times)
HostFat (OP)
Moderator
Legendary
*
Offline Offline

Activity: 4242
Merit: 1203


I support freedom of choice


View Profile WWW
March 19, 2014, 01:34:06 PM
 #1

Buon download a tutti gli utilizzatori Grin

https://bitcoin.org/bin/0.9.0/

Per gli utenti comuni comunque, nel caso vogliano avere un client sul proprio computer, viene ancora ora consigliato l'uso di Multibit o anche Electrum.

PS: Prima era Bitcoin-Qt, gli hanno giusto cambiato nome.

Quote
This is a release candidate for a new major version. A major version brings
both new features and bug fixes.

Please report bugs using the issue tracker at github:

  https://github.com/bitcoin/bitcoin/issues

How to Upgrade
--------------

If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), uninstall all
earlier versions of Bitcoin, then run the installer (on Windows) or just copy
over /Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux).

If you are upgrading from version 0.7.2 or earlier, the first time you run
0.9.0 your blockchain files will be re-indexed, which will take anywhere from
30 minutes to several hours, depending on the speed of your machine.

On Windows, do not forget to uninstall all earlier versions of the Bitcoin
client first, especially if you are switching to the 64-bit version.

Windows 64-bit installer
-------------------------

New in 0.9.0 is the Windows 64-bit version of the client. There have been
frequent reports of users running out of virtual memory on 32-bit systems
during the initial sync. Because of this it is recommended to install the
64-bit version if your system supports it.

NOTE: Release candidate 2 Windows binaries are not code-signed; use PGP
and the SHA256SUMS.asc file to make sure your binaries are correct.
In the final 0.9.0 release, Windows setup.exe binaries will be code-signed.

OSX 10.5 / 32-bit no longer supported
-------------------------------------

0.9.0 drops support for older Macs. The minimum requirements are now:
* A 64-bit-capable CPU (see http://support.apple.com/kb/ht3696);
* Mac OS 10.6 or later (see https://support.apple.com/kb/ht1633).

Downgrading warnings
--------------------

The 'chainstate' for this release is not always compatible with previous
releases, so if you run 0.9 and then decide to switch back to a
0.8.x release you might get a blockchain validation error when starting the
old release (due to 'pruned outputs' being omitted from the index of
unspent transaction outputs).

Running the old release with the -reindex option will rebuild the chainstate
data structures and correct the problem.

Also, the first time you run a 0.8.x release on a 0.9 wallet it will rescan
the blockchain for missing spent coins, which will take a long time (tens
of minutes on a typical machine).

Rebranding to Bitcoin Core
---------------------------

To reduce confusion between Bitcoin-the-network and Bitcoin-the-software we
have renamed the reference client to Bitcoin Core.

Autotools build system
-----------------------

For 0.9.0 we switched to an autotools-based build system instead of individual
(q)makefiles.

Using the standard "./autogen.sh; ./configure; make" to build Bitcoin-Qt and
bitcoind makes it easier for experienced open source developers to contribute
to the project.

Be sure to check doc/build-*.md for your platform before building from source.

Bitcoin-cli
-------------

Another change in the 0.9 release is moving away from the bitcoind executable
functioning both as a server and as a RPC client. The RPC client functionality
("tell the running bitcoin daemon to do THIS") was split into a separate
executable, 'bitcoin-cli'. The RPC client code will eventually be removed from
bitcoind, but will be kept for backwards compatibility for a release or two.

`walletpassphrase` RPC
-----------------------

The behavior of the `walletpassphrase` RPC when the wallet is already unlocked
has changed between 0.8 and 0.9.

The 0.8 behavior of `walletpassphrase` is to fail when the wallet is already unlocked:

    > walletpassphrase 1000
    walletunlocktime = now + 1000
    > walletpassphrase 10
    Error: Wallet is already unlocked (old unlock time stays)

The new behavior of `walletpassphrase` is to set a new unlock time overriding
the old one:

    > walletpassphrase 1000
    walletunlocktime = now + 1000
    > walletpassphrase 10
    walletunlocktime = now + 10 (overriding the old unlock time)

Transaction malleability-related fixes
--------------------------------------

This release contains a few fixes for transaction ID (TXID) malleability
issues:

- -nospendzeroconfchange command-line option, to avoid spending
  zero-confirmation change
- IsStandard() transaction rules tightened to prevent relaying and mining of
  mutated transactions
- Additional information in listtransactions/gettransaction output to
  report wallet transactions that conflict with each other because
  they spend the same outputs.
- Bug fixes to the getbalance/listaccounts RPC commands, which would report
  incorrect balances for double-spent (or mutated) transactions.
- New option: -zapwallettxes to rebuild the wallet's transaction information

Transaction Fees
----------------

This release drops the default fee required to relay transactions across the
network and for miners to consider the transaction in their blocks to
0.01mBTC per kilobyte.

Note that getting a transaction relayed across the network does NOT guarantee
that the transaction will be accepted by a miner; by default, miners fill
their blocks with 50 kilobytes of high-priority transactions, and then with
700 kilobytes of the highest-fee-per-kilobyte transactions.

The minimum relay/mining fee-per-kilobyte may be changed with the
minrelaytxfee option. Note that previous releases incorrectly used
the mintxfee setting to determine which low-priority transactions should
be considered for inclusion in blocks.

The wallet code still uses a default fee for low-priority transactions of
0.1mBTC per kilobyte. During periods of heavy transaction volume, even this
fee may not be enough to get transactions confirmed quickly; the mintxfee
option may be used to override the default.

0.9.0 Release notes
=======================

RPC:

- New notion of 'conflicted' transactions, reported as confirmations: -1
- 'listreceivedbyaddress' now provides tx ids
- Add raw transaction hex to 'gettransaction' output
- Updated help and tests for 'getreceivedby(account|address)'
- In 'getblock', accept 2nd 'verbose' parameter, similar to getrawtransaction,
  but defaulting to 1 for backward compatibility
- Add 'verifychain', to verify chain database at runtime
- Add 'dumpwallet' and 'importwallet' RPCs
- 'keypoolrefill' gains optional size parameter
- Add 'getbestblockhash', to return tip of best chain
- Add 'chainwork' (the total work done by all blocks since the genesis block)
  to 'getblock' output
- Make RPC password resistant to timing attacks
- Clarify help messages and add examples
- Add 'getrawchangeaddress' call for raw transaction change destinations
- Reject insanely high fees by default in 'sendrawtransaction'
- Add RPC call 'decodescript' to decode a hex-encoded transaction script
- Make 'validateaddress' provide redeemScript
- Add 'getnetworkhashps' to get the calculated network hashrate
- New RPC 'ping' command to request ping, new 'pingtime' and 'pingwait' fields
  in 'getpeerinfo' output
- Adding new 'addrlocal' field to 'getpeerinfo' output
- Add verbose boolean to 'getrawmempool'
- Add rpc command 'getunconfirmedbalance' to obtain total unconfirmed balance
- Explicitly ensure that wallet is unlocked in `importprivkey`
- Add check for valid keys in `importprivkey`

Command-line options:

- New option: -nospendzeroconfchange to never spend unconfirmed change outputs
- New option: -zapwallettxes to rebuild the wallet's transaction information
- Rename option '-tor' to '-onion' to better reflect what it does
- Add '-disablewallet' mode to let bitcoind run entirely without wallet (when
  built with wallet)
- Update default '-rpcsslciphers' to include TLSv1.2
- make '-logtimestamps' default on and rework help-message
- RPC client option: '-rpcwait', to wait for server start
- Remove '-logtodebugger'
- Allow `-noserver` with bitcoind

Block-chain handling and storage:

- Update leveldb to 1.15
- Check for correct genesis (prevent cases where a datadir from the wrong
  network is accidentally loaded)
- Allow txindex to be removed and add a reindex dialog
- Log aborted block database rebuilds
- Store orphan blocks in serialized form, to save memory
- Limit the number of orphan blocks in memory to 750
- Fix non-standard disconnected transactions causing mempool orphans
- Add a new checkpoint at block 279,000

Wallet:

- Bug fixes and new regression tests to correctly compute
  the balance of wallets containing double-spent (or mutated) transactions
- Store key creation time. Calculate whole-wallet birthday.
- Optimize rescan to skip blocks prior to birthday
- Let user select wallet file with -wallet=foo.dat
- Consider generated coins mature at 101 instead of 120 blocks
- Improve wallet load time
- Don't count txins for priority to encourage sweeping
- Don't create empty transactions when reading a corrupted wallet
- Fix rescan to start from beginning after importprivkey
- Only create signatures with low S values

Mining:

- Increase default -blockmaxsize/prioritysize to 750K/50K
- 'getblocktemplate' does not require a key to create a block template
- Mining code fee policy now matches relay fee policy

Protocol and network:

- Drop the fee required to relay a transaction to 0.01mBTC per kilobyte
- Send tx relay flag with version
- New 'reject' P2P message (BIP 0061, see
  https://gist.github.com/gavinandresen/7079034 for draft)
- Dump addresses every 15 minutes instead of 10 seconds
- Relay OP_RETURN data TxOut as standard transaction type
- Remove CENT-output free transaction rule when relaying
- Lower maximum size for free transaction creation
- Send multiple inv messages if mempool.size > MAX_INV_SZ
- Split MIN_PROTO_VERSION into INIT_PROTO_VERSION and MIN_PEER_PROTO_VERSION
- Do not treat fFromMe transaction differently when broadcasting
- Process received messages one at a time without sleeping between messages
- Improve logging of failed connections
- Bump protocol version to 70002
- Add some additional logging to give extra network insight
- Added new DNS seed from bitcoinstats.com

Validation:

- Log reason for non-standard transaction rejection
- Prune provably-unspendable outputs, and adapt consistency check for it.
- Detect any sufficiently long fork and add a warning
- Call the -alertnotify script when we see a long or invalid fork
- Fix multi-block reorg transaction resurrection
- Reject non-canonically-encoded serialization sizes
- Reject dust amounts during validation
- Accept nLockTime transactions that finalize in the next block

Build system:

- Switch to autotools-based build system
- Build without wallet by passing `--disable-wallet` to configure, this
  removes the BerkeleyDB dependency
- Upgrade gitian dependencies (libpng, libz, libupnpc, boost, openssl) to more
  recent versions
- Windows 64-bit build support
- Solaris compatibility fixes
- Check integrity of gitian input source tarballs
- Enable full GCC Stack-smashing protection for all OSes

GUI:

- Switch to Qt 5.2.0 for Windows build
- Add payment request (BIP 0070) support
- Improve options dialog
- Show transaction fee in new send confirmation dialog
- Add total balance in overview page
- Allow user to choose data directory on first start, when data directory is
  missing, or when the -choosedatadir option is passed
- Save and restore window positions
- Add vout index to transaction id in transactions details dialog
- Add network traffic graph in debug window
- Add open URI dialog
- Add Coin Control Features
- Improve receive coins workflow: make the 'Receive' tab into a form to request
  payments, and move historical address list functionality to File menu.
- Rebrand to `Bitcoin Core`
- Move initialization/shutdown to a thread. This prevents "Not responding"
  messages during startup. Also show a window during shutdown.
- Don't regenerate autostart link on every client startup
- Show and store message of normal bitcoin:URI
- Fix richtext detection hang issue on very old Qt versions
- OS X: Make use of the 10.8+ user notification center to display Growl-like
  notifications
- OS X: Added NSHighResolutionCapable flag to Info.plist for better font
  rendering on Retina displays.
- OS X: Fix bitcoin-qt startup crash when clicking dock icon
- Linux: Fix Gnome bitcoin: URI handler

Miscellaneous:

- Add Linux script (contrib/qos/tc.sh) to limit outgoing bandwidth
- Add '-regtest' mode, similar to testnet but private with instant block
  generation with 'setgenerate' RPC.
- Add 'linearize.py' script to contrib, for creating bootstrap.dat
- Add separate bitcoin-cli client

Credits
--------

Thanks to everyone who contributed to this release:

- Andrey
- Ashley Holman
- b6393ce9-d324-4fe1-996b-acf82dbc3d53
- bitsofproof
- Brandon Dahler
- Calvin Tam
- Christian Decker
- Christian von Roques
- Christopher Latham
- Chuck
- coblee
- constantined
- Cory Fields
- Cozz Lovan
- daniel
- Daniel Larimer
- David Hill
- Dmitry Smirnov
- Drak
- Eric Lombrozo
- fanquake
- fcicq
- Florin
- frewil
- Gavin Andresen
- Gregory Maxwell
- gubatron
- Guillermo Céspedes Tabárez
- Haakon Nilsen
- HaltingState
- Han Lin Yap
- harry
- Ian Kelling
- Jeff Garzik
- Johnathan Corgan
- Jonas Schnelli
- Josh Lehan
- Josh Triplett
- Julian Langschaedel
- Kangmo
- Lake Denman
- Luke Dashjr
- Mark Friedenbach
- Matt Corallo
- Michael Bauer
- Michael Ford
- Michagogo
- Midnight Magic
- Mike Hearn
- Nils Schneider
- Noel Tiernan
- Olivier Langlois
- patrick s
- Patrick Strateman
- paveljanik
- Peter Todd
- phantomcircuit
- phelixbtc
- Philip Kaufmann
- Pieter Wuille
- Rav3nPL
- R E Broadley
- regergregregerrge
- Robert Backhaus
- Roman Mindalev
- Rune K. Svendsen
- Ryan Niebur
- Scott Ellis
- Scott Willeke
- Sergey Kazenyuk
- Shawn Wilkinson
- Sined
- sje
- Subo1978
- super3
- Tamas Blummer
- theuni
- Thomas Holenstein
- Timon Rapp
- Timothy Stranex
- Tom Geller
- Torstein Husebø
- Vaclav Vobornik
- vhf / victor felder
- Vinnie Falco
- Warren Togami
- Wil Bown
- Wladimir J. van der Laan


NON DO ASSISTENZA PRIVATA - http://hostfatmind.com
Sammot
Member
**
Offline Offline

Activity: 76
Merit: 10


View Profile WWW
March 19, 2014, 01:57:18 PM
 #2

Finalmente hanno introdotto il Coin Control  Smiley

HostFat (OP)
Moderator
Legendary
*
Offline Offline

Activity: 4242
Merit: 1203


I support freedom of choice


View Profile WWW
March 19, 2014, 01:58:57 PM
 #3

Finalmente hanno introdotto il Coin Control  Smiley
Si finalmente! Ora si può tornare ad usare anche questo client Grin

NON DO ASSISTENZA PRIVATA - http://hostfatmind.com
lucolo
Legendary
*
Offline Offline

Activity: 1092
Merit: 1016



View Profile WWW
March 19, 2014, 02:03:56 PM
 #4

Veramente ottimo. Un bellissimo aggiornamento per me che ho sempre usato QT.
sheriff7
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


View Profile
March 19, 2014, 02:15:54 PM
 #5

Finalmente hanno introdotto il Coin Control  Smiley
Si finalmente! Ora si può tornare ad usare anche questo client Grin

Cosa introduce questa funzione?

                 ▄▄▄▄██████▄▄▄▄
             ▄▄███████████████████▄▄        █
          ▄████████▀▀▀     ▀▀▀████████    ██
        ▄█████▀▀                 ▀▀█████████
      ▄████▀                         ██████
     ████                     ▄▄▄██████████
    ████               ▄▄▄▄██████████████████
   ████            ▄▄██████████████▀▀▀ ▄█ ████
  ████          ▄█████████████▀▀ ▄▄▄████   ████
 ▐███         ▄███████████▀▀ ▄▄████████    ████▌
 ████        █████████▀▀ ▄▄███████████▀     ████
 ███▌       ███████▀ ▄▄██████████████▀      ▐███
 ███▌      ██████▀ ▄██████████████▀▀        ▐███
 ████     █████▀   █▀▀                      ████
 ▐███     ████  ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄██▀         ████▌
  ████   ████  ████████████████▀           ████
   ████  ███  █▀▀                         ████
    ████ ███   ▄▄▄▄▄▄▄▄▄▄▄██▀            ████
     ████ █  █████████████▀            █████▀
      █████  █▀▀                     ▄████▀
       ▀█████▄▄▄                ▄▄▄█████▀
         ▀████████▄▄▄      ▄▄▄████████▀
            ▀▀████████████████████▀▀
                 ▀▀▀▀██████▀▀▀▀

Egretia
  World's 1st HTML5 Blockchain Engine and Platform 
       ▬▬▬▬▬▬▬▬  Public Sale Starts on May 26 2018!
   [ ANN THREAD ]

TELEGRAM           ● TWITTER
              ● FACEBOOK           ● LINKEDIN
REDDIT           ● BOUNTY THREAD
FaSan
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500



View Profile
March 19, 2014, 02:21:33 PM
 #6

Finalmente hanno introdotto il Coin Control  Smiley
Si finalmente! Ora si può tornare ad usare anche questo client Grin

Cosa introduce questa funzione?



Permette di selezionare l' address di spedizione(che deve chiaramente avere disponibile tutto l' importo), invece di mischiare a casaccio tra le monete disponibile nei vari address del wallet



FaSan
sheriff7
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


View Profile
March 19, 2014, 02:29:43 PM
 #7

Grazie FaSan, ottima implementazione!

                 ▄▄▄▄██████▄▄▄▄
             ▄▄███████████████████▄▄        █
          ▄████████▀▀▀     ▀▀▀████████    ██
        ▄█████▀▀                 ▀▀█████████
      ▄████▀                         ██████
     ████                     ▄▄▄██████████
    ████               ▄▄▄▄██████████████████
   ████            ▄▄██████████████▀▀▀ ▄█ ████
  ████          ▄█████████████▀▀ ▄▄▄████   ████
 ▐███         ▄███████████▀▀ ▄▄████████    ████▌
 ████        █████████▀▀ ▄▄███████████▀     ████
 ███▌       ███████▀ ▄▄██████████████▀      ▐███
 ███▌      ██████▀ ▄██████████████▀▀        ▐███
 ████     █████▀   █▀▀                      ████
 ▐███     ████  ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄██▀         ████▌
  ████   ████  ████████████████▀           ████
   ████  ███  █▀▀                         ████
    ████ ███   ▄▄▄▄▄▄▄▄▄▄▄██▀            ████
     ████ █  █████████████▀            █████▀
      █████  █▀▀                     ▄████▀
       ▀█████▄▄▄                ▄▄▄█████▀
         ▀████████▄▄▄      ▄▄▄████████▀
            ▀▀████████████████████▀▀
                 ▀▀▀▀██████▀▀▀▀

Egretia
  World's 1st HTML5 Blockchain Engine and Platform 
       ▬▬▬▬▬▬▬▬  Public Sale Starts on May 26 2018!
   [ ANN THREAD ]

TELEGRAM           ● TWITTER
              ● FACEBOOK           ● LINKEDIN
REDDIT           ● BOUNTY THREAD
Sammot
Member
**
Offline Offline

Activity: 76
Merit: 10


View Profile WWW
March 19, 2014, 04:22:25 PM
 #8

Puoi anche decidere l'indirizzo di resto ed è stata aggiunta la modalità "Richiedi pagamento"

zoe
Sr. Member
****
Offline Offline

Activity: 400
Merit: 250



View Profile
March 19, 2014, 07:42:26 PM
 #9

Nella sezione indirizzo coin control, c'è la colonna priorità (ultima a destra), sapete dirmi a cosa serve e se si può cambiare?
Sammot
Member
**
Offline Offline

Activity: 76
Merit: 10


View Profile WWW
March 19, 2014, 09:41:18 PM
 #10

Nella sezione indirizzo coin control, c'è la colonna priorità (ultima a destra), sapete dirmi a cosa serve e se si può cambiare?


Qua in fondo spiega cosa è la priorità: https://en.bitcoin.it/wiki/Transaction_fees

Più la priorità è bassa più bisogna pagare per velocizzare la transazione, comunque non si può cambiare, aumenta col passare del tempo.

bitkill
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
March 19, 2014, 09:56:03 PM
 #11

Ma perchè consigliate ancora MultiBit rispetto a questo nuovo portafoglio che sembra meglio del primo citato?
HostFat (OP)
Moderator
Legendary
*
Offline Offline

Activity: 4242
Merit: 1203


I support freedom of choice


View Profile WWW
March 19, 2014, 10:14:19 PM
 #12

Perchè non richiede il download di tutta la blockchain.
In genere un utente inesperto difficilmente può convivere con questa cosa.

NON DO ASSISTENZA PRIVATA - http://hostfatmind.com
bitkill
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
March 19, 2014, 10:24:55 PM
 #13

Si questo non lo sapevo ed è buono in effetti, ma tanto quanto.
Alla fine solo la prima volta ti ci devi mettere bestemmiando d'avanti, poi ogni settimana lo avvii e scarichi i blocchi.
Poi c'è anche da dire che sono uno Online e l'altro Offline.
Quindi dipende anche dalle preferenze, ma secondo me consigliare l'altro solo per i blocchi che non si scaricano, è esagerato, ma posso sbagliarmi ovviamente  Wink
HostFat (OP)
Moderator
Legendary
*
Offline Offline

Activity: 4242
Merit: 1203


I support freedom of choice


View Profile WWW
March 19, 2014, 11:41:12 PM
 #14

L'esperienza mi ha insegnato che l'utente comune (soprattutto se italiano) è spesso ignorante (che porta all'essere incapace), se non stupido, ma soprattutto svogliato.
Alla minima difficoltà molla tutto.

Questa tecnologia dev'essere per tutti, quindi meglio andare per piccoli passi.

NON DO ASSISTENZA PRIVATA - http://hostfatmind.com
lucolo
Legendary
*
Offline Offline

Activity: 1092
Merit: 1016



View Profile WWW
March 19, 2014, 11:44:31 PM
 #15

[...] ma soprattutto svogliato. [...]

+1, si è riassunto l'italiano medio ahimè.
bitkill
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
March 20, 2014, 01:49:42 AM
 #16

L'esperienza mi ha insegnato che l'utente comune (soprattutto se italiano) è spesso ignorante (che porta all'essere incapace), se non stupido, ma soprattutto svogliato.
Alla minima difficoltà molla tutto.

Questa tecnologia dev'essere per tutti, quindi meglio andare per piccoli passi.

Non ci avevo pensato in base a chi non sa proprio nulla di cosa sia il BTC, ed inoltre pensando che noi italiani siamo effettivamente come hai detto tu  Grin Grin
otpirc
Newbie
*
Offline Offline

Activity: 18
Merit: 0


View Profile
March 20, 2014, 08:39:07 AM
 #17

Ciao a tutti. Vorrei un chiarimento. Non sono l'italiano medio ma prima di fare qualche casino, meglio chiedere Cheesy
Allora ora ho sul pc installato la 0.8.6 e voglio passare alla 0.9.0 a 64 bit. C'è scritto nelle note che è meglio disinstallare la vecchia versione prima. Questo comporta la cancellazione di tutta la blockchain e quindi il doverla risincronizzare tutta dopo? Altra cosa, più importante: ho fatto ovviamente il backup del wallet. Come devo procedere? Disinstallo la vecchia versione, installo la nuova e poi vado a sostituire il wallet, dopodiché posso aprire il programma? Tutto giusto o no ?  Grin
otpirc
Newbie
*
Offline Offline

Activity: 18
Merit: 0


View Profile
March 20, 2014, 09:20:03 AM
 #18

Ho trovato la risposta nella discussione nel thread inglese. No, i dati della blockchain e nemmeno il wallet vengono toccati, vieni disinstallato solo il programma. Ma è ovviamente consigliato fare il backup del wallet e disinstallare prima la vecchia versione.
HostFat (OP)
Moderator
Legendary
*
Offline Offline

Activity: 4242
Merit: 1203


I support freedom of choice


View Profile WWW
March 20, 2014, 09:39:05 AM
 #19

No, direi proprio che non lo sei Cheesy

NON DO ASSISTENZA PRIVATA - http://hostfatmind.com
zoe
Sr. Member
****
Offline Offline

Activity: 400
Merit: 250



View Profile
March 20, 2014, 09:42:51 AM
 #20

Esatto quando disinstalli, non tocchi la cartella .bitcoin (in linux)  che e la cartella dove c'è la blockchain e tutte le chiavi ecc. Quindi togliendo la vecchia ....La nuova andrà ha prendere tutte le inpostazioni della vecchia in .bitcoin.
alanpar
Sr. Member
****
Offline Offline

Activity: 382
Merit: 261


View Profile
March 22, 2014, 07:52:51 PM
 #21

ok...ma la traduzione in italiano?...  Huh
4 ore dietro (a chi?  Grin) ....... 4 ore indietro forse    Cheesy
Sto sincronizzando con la rete  Huh (di chi...dei pescatori?   Grin ) ....... Sto sincronizzandomi con la rete, oppure Sto sincronizzando la rete, oppure le transazioni, oppure i blocchi, oppure Aggiormanento blocchi...transazioni...ecc ecc
HostFat (OP)
Moderator
Legendary
*
Offline Offline

Activity: 4242
Merit: 1203


I support freedom of choice


View Profile WWW
March 23, 2014, 12:21:58 AM
 #22

ok...ma la traduzione in italiano?...  Huh
4 ore dietro (a chi?  Grin) ....... 4 ore indietro forse    Cheesy
Sto sincronizzando con la rete  Huh (di chi...dei pescatori?   Grin ) ....... Sto sincronizzandomi con la rete, oppure Sto sincronizzando la rete, oppure le transazioni, oppure i blocchi, oppure Aggiormanento blocchi...transazioni...ecc ecc
Per migliorarla andare qua:
https://www.transifex.com/projects/p/bitcoin/resource/tx/

NON DO ASSISTENZA PRIVATA - http://hostfatmind.com
alanpar
Sr. Member
****
Offline Offline

Activity: 382
Merit: 261


View Profile
March 23, 2014, 03:59:55 PM
Last edit: March 23, 2014, 04:12:23 PM by alanpar
 #23


Fatto...ma poi come avviene l'inserimento nel programma?  Huh

Ps=scorrendo l'editor mi sono accorto che ci sono molti errori...crittazione invece di criptazione...miglior block  Huh Huh ecc ecc
HostFat (OP)
Moderator
Legendary
*
Offline Offline

Activity: 4242
Merit: 1203


I support freedom of choice


View Profile WWW
March 23, 2014, 04:01:34 PM
 #24

I dev alla prossima release raccolgono le transazioni e le implementando nel programma.

NON DO ASSISTENZA PRIVATA - http://hostfatmind.com
otpirc
Newbie
*
Offline Offline

Activity: 18
Merit: 0


View Profile
March 25, 2014, 09:57:18 AM
 #25

Ciao ragazzi, c'è qualcuno che mi spiega come si fa ad utilizzare la nuova funzione per cui si può decidere da quale indirizzo si può spedire??
Altra cosa, io non mica capito come funziona la nuova schermata "ricevi". Un breve tutorial?
grazie Cheesy
nitrogenetics
Full Member
***
Offline Offline

Activity: 131
Merit: 108



View Profile
March 25, 2014, 04:44:27 PM
 #26


È sufficiente fare "Scarica per la traduzione" editare l'xml e poi fare "Carica file" o mi sfugge qualcosa?

Ciao ragazzi, c'è qualcuno che mi spiega come si fa ad utilizzare la nuova funzione per cui si può decidere da quale indirizzo si può spedire??
Altra cosa, io non mica capito come funziona la nuova schermata "ricevi". Un breve tutorial?
grazie Cheesy

Il coin control si attiva dalle opzioni avanzate, dopodiché puoi selezionare da quali input non spesi spendere.
L'indirizzo di ricezione è stato "evoluto" ad un modulo di pagamento a cui puoi aggiungere importo richiesto e note testuali. Ad ogni richiesta di pagamento corrisponde un nuovo indirizzo di ricezione (a meno che non si spunti "Riusa un indirizzo di pagamento").

BTC: 1NWQ4TarCCC7j1XY26KRFFEtLYbPP6S3DH
XRP: rJkbeyRaUYDmcukEyLYVfn56QDM9VhybZG
otpirc
Newbie
*
Offline Offline

Activity: 18
Merit: 0


View Profile
March 26, 2014, 02:07:55 PM
 #27

Grazie del suggerimento. Mi sono accorto però che su una etichetta con relativo indirizzo, se clicco sul triangolino a sx, c'è scritto "(resto)" a cui è associato un nuovo indirizzo. Quindi quando feci operazioni in uscita di btc (ancora con la vecchia 0.8.6) il programma aveva preso l'importo sempre da questo indirizzo e il resto lo mette in uno nuovo. E' così che funziona? Quindi se io voglio sperdire un tot (ovviamente se ci sono sufficienti BTC) dall'indirizzo x, poi il rimanente tot-x me lo ritroverò associato ad un nuovo indirizzo? (io pensavo fosse più banale, il resto rimane nel vecchio e stop)

Per il nuovo "ricevi" sinceramente non colgo l'utilità: a che serve specificare l'importo da dover ricevere?
Sammot
Member
**
Offline Offline

Activity: 76
Merit: 10


View Profile WWW
March 26, 2014, 11:52:39 PM
 #28

Quindi quando feci operazioni in uscita di btc (ancora con la vecchia 0.8.6) il programma aveva preso l'importo sempre da questo indirizzo e il resto lo mette in uno nuovo. E' così che funziona? Quindi se io voglio sperdire un tot (ovviamente se ci sono sufficienti BTC) dall'indirizzo x, poi il rimanente tot-x me lo ritroverò associato ad un nuovo indirizzo?


Esatto

Quote

Per il nuovo "ricevi" sinceramente non colgo l'utilità: a che serve specificare l'importo da dover ricevere?

Per creare un qr code da fotografare se qualcuno vuole pagarti con lo smartphone, oppure per creare una sorta di "link" che permette a chi vuole pagarti online di avere subito il pagamento preimpostato.

Algoo
Newbie
*
Offline Offline

Activity: 31
Merit: 0


View Profile
May 15, 2014, 12:36:45 PM
 #29

Come si fa ad aprire il wallet su Electron? non riesco

jack0m
Legendary
*
Offline Offline

Activity: 3640
Merit: 1988


View Profile
May 15, 2014, 12:50:24 PM
 #30

Come si fa ad aprire il wallet su Electron? non riesco



??

Se intendi aprire il wallet.dat di Bitcoin Core da Electrum, semplicemente non puoi... al limite puoi esportare/importare chiavi private, ma tenendo presente che in caso di recovery dal seed NON saranno ovviamente incluse

Money is a hoax. Debt is slavery. Consumerism is toxic.
Pages: 1 2 [All]
  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!