fix nigglies, as pointed out by moneromooo-monero
This commit is contained in:
parent
df63e0704a
commit
011e42f337
2 changed files with 4 additions and 9 deletions
|
@ -60,7 +60,7 @@ stop at block number
|
|||
|
||||
`--database <database type>#<flag(s)>`
|
||||
|
||||
database type: `lmdb, berkeley, memory`
|
||||
database type: `lmdb, memory`
|
||||
|
||||
flags:
|
||||
|
||||
|
@ -77,17 +77,12 @@ LMDB flags (more than one may be specified):
|
|||
|
||||
`nosync, nometasync, writemap, mapasync, nordahead`
|
||||
|
||||
BerkeleyDB flags (takes one):
|
||||
|
||||
`txn_write_nosync, txn_nosync, txn_sync`
|
||||
## Examples:
|
||||
|
||||
```
|
||||
## Examples:
|
||||
$ monero-blockchain-import --database lmdb#fastest
|
||||
$ monero-blockchain-import --database berkeley#fastest
|
||||
|
||||
$ monero-blockchain-import --database lmdb#nosync
|
||||
$ monero-blockchain-import --database lmdb#nosync,nometasync
|
||||
|
||||
$ monero-blockchain-import --database berkeley#txn_nosync
|
||||
$ monero-blockchain-import --database lmdb#nosync,nometasync
|
||||
```
|
||||
|
|
|
@ -280,7 +280,7 @@ namespace cryptonote
|
|||
{
|
||||
LOG_PRINT_RED_L0("Found old-style blockchain.bin in " << old_files.string());
|
||||
LOG_PRINT_RED_L0("Monero now uses a new format. You can either remove blockchain.bin to start syncing");
|
||||
LOG_PRINT_RED_L0("the blockchain anew, or use monero-blockchain-import and monero-blockchain-export to");
|
||||
LOG_PRINT_RED_L0("the blockchain anew, or use monero-blockchain-export and monero-blockchain-import to");
|
||||
LOG_PRINT_RED_L0("convert your existing blockchain.bin to the new format. See README.md for instructions.");
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue