Thomas Winget
7568f89c55
Fixed segfault with checkpoints loading
...
Bounds checking on blockchain_storage' m_blocks.size() when validating
against checkpoints. Also moved initial json & DNS checkpoints load to
after blockchain init.
2014-09-30 16:21:37 -04:00
Thomas Winget
b261d9207b
DNS checkpoint updating added, and daemon flag to enforce them
...
The daemon should now check for updated checkpoints from
checkpoints.moneropulse.org as well as from the configured json file
every ~1hr (and on launch).
The daemon now has a flag to enable enforcing these checkpoints (rather
than just printing a warning when they fail).
TODO: an easily configurable list of DNS servers to check for
checkpoints as opposed to the hard-coded "checkpoints.moneropulse.org"
2014-09-30 16:21:37 -04:00
Thomas Winget
30caebfce3
reload checkpoints file every ~hr and print if any fail
...
also some other minor bug squashing and code formatting
2014-09-30 16:21:37 -04:00
Thomas Winget
6f2c2e1c27
Adding an identical existing checkpoint should not error
...
For checkpoints being read at runtime to work correctly, the checkpoint
add code needs to not return false if a checkpoint is added that already
exists. In this case, instead return false if the checkpoint is for a
height that already has a checkpoint and the hashes are different.
2014-09-30 16:17:26 -04:00
Riccardo Spagni
59a8366bb1
Revert "low risk, potentially varint overflow bug patched thanks to BBR"
...
This reverts commit 4e2b2b942d
.
2014-09-25 08:24:42 +02:00
Riccardo Spagni
4e2b2b942d
low risk, potentially varint overflow bug patched thanks to BBR
2014-09-24 22:17:33 -04:00
Tomer Konforty
06a4578bf2
Added ability to read chechpoint hashes from json file in data folder
2014-09-25 00:00:44 +02:00
iamsmooth
9956b68b18
checkpoint
2014-09-24 23:52:40 +02:00
iamsmooth
d19cf1f458
checkpoint
2014-09-24 23:52:31 +02:00
iamsmooth
c428c29051
checkpoints
2014-09-24 23:52:26 +02:00
iamsmooth
b1d586af4b
checkpoint
2014-09-24 23:52:20 +02:00
iamsmooth
400f1016dd
checkpoints
2014-09-24 23:52:13 +02:00
Zachary Michaels
45bc24d69b
Another preprocessor fix (difficulty.cpp)
2014-09-15 22:33:10 +02:00
Zachary Michaels
d03308734b
Separate testnet address prefix
2014-09-15 15:54:59 +02:00
Zachary Michaels
018e251cc0
Separate testnet default data dir
2014-09-15 15:54:19 +02:00
Zachary Michaels
96eed84aad
Pass tx and nonce to genesis block constructor
2014-09-15 15:53:50 +02:00
Zachary Michaels
fb4146fa34
Reorganize testnet constants
2014-09-15 15:53:10 +02:00
Zachary Michaels
07470fd400
Add testnet flag
...
Source: cryptonotefoundation
2014-09-15 15:53:01 +02:00
iamsmooth
bb2b606e91
fix incorrect error message (obvious cut and paste bug from upstream)
2014-09-13 08:04:05 +00:00
iamsmooth
08205f01d9
output rng fix from boolberry
2014-09-12 22:57:32 +00:00
fluffypony
4ba680f294
a few more error messages moved to log level 1
2014-09-09 12:28:16 +02:00
fluffypony
cf5a8b1d6c
moved non-critical warnings and errors to log level 1
2014-09-09 11:32:00 +02:00
iamsmooth
0a9f2f5236
fix checkpoints
2014-09-06 21:56:39 +02:00
iamsmooth
07680e553f
bug fix to checkpoint-on-restore; still fails on 612
2014-09-06 21:56:34 +02:00
iamsmooth
480cf9668f
checkpoints on restore; currently fails on 212 checkpoint
2014-09-06 21:56:29 +02:00
Thomas Winget
c05489938f
override for get_block_longhash for block 202612
2014-09-06 21:56:18 +02:00
Thomas Winget
9a16bb9936
added double-check for 202612 block id
...
if a new block has the same block id as 202612 but the wrong blobdata,
this will tell the caller that the block id is actually null_hash rather
than the 202612 block id.
2014-09-06 21:56:12 +02:00
Thomas Winget
115f9523fa
hex_to_pod needs the destination as an arg, as opposed to it returning the pod
2014-09-06 21:56:06 +02:00
Thomas Winget
a544603a7b
Override for block hashing for block 202612
...
Since we need to fix tree_hash, but doing so would invalidate the block
id for block 202612, this fix should check to see if we're trying to get
the block id for 202612 (if its blob hash matches) and return the "old"
block id, for backwards compatibility.
2014-09-06 21:54:58 +02:00
Thomas Winget
bdac624899
restored wallets will have timestamp set to June 8 2014.
2014-08-03 09:49:31 -04:00
Riccardo Spagni
ba99a86333
Merge pull request #73 from jakoblind/refresh_height
...
Optional height parameter for wallet refresh
2014-08-02 11:13:26 +02:00
Riccardo Spagni
d1b0ee7ecd
Merge pull request #64 from mikezackles/bytecoin_tx_pool_tmp
...
tx pool fixes, courtesy of Bytecoin
2014-08-01 17:31:15 +02:00
Jakob Lind
e4273f2415
#36 simplewallet refresh include optional height param
...
height param is used optionally in refresh command
TODO: This should also be the default behaviour
when generating a new wallet.
2014-08-01 10:17:50 +02:00
fluffypony
6fc995fe5d
License updated to BSD 3-clause
2014-07-23 15:03:52 +02:00
Zachary Michaels
61e447f7c8
Remove dead code
2014-07-17 19:18:24 -04:00
Zachary Michaels
e48cf2a3a9
Remove second tx size check
2014-07-17 18:47:18 -04:00
Zachary Michaels
23c914ccfe
Don't check max tx size when adding to block
...
This is now done when adding transactions to the pool.
2014-07-17 17:11:21 -04:00
Zachary Michaels
e3b8c58496
Don't check for min fee when adding tx to block
...
This is now done when transactions enter the pool.
2014-07-17 17:10:35 -04:00
Zachary Michaels
232e23e90f
Decrease max block size from 200% median to 130%
2014-07-17 16:56:31 -04:00
Zachary Michaels
c017bb0656
Use print_money in log
2014-07-17 16:56:28 -04:00
Zachary Michaels
d9f3421ce7
Minimum tx fee for entering pool
2014-07-17 16:55:40 -04:00
Zachary Michaels
8e99cee062
Start fresh if tx_pool deserialize fails
2014-07-17 16:53:48 -04:00
Zachary Michaels
a3f5764869
Add transaction size limit
...
Transactions larger than the limit will not enter the pool
2014-07-17 16:53:48 -04:00
Zachary Michaels
4d25350a82
Use const where appropriate in tx_pool
2014-07-17 16:31:31 -04:00
Zachary Michaels
9872d205ff
Make some tx_pool methods static
2014-07-17 14:02:17 -04:00
Zachary Michaels
85a04cb168
Make some tx_pool methods private
2014-07-17 11:25:41 -04:00
Zachary Michaels
a633c11cbb
Remove unused function
2014-07-01 14:57:27 -04:00
Zachary Michaels
26c83c5dea
Explicit namespaces
2014-07-01 14:57:27 -04:00
Zachary Michaels
28af03208b
Remove redeclaration
2014-07-01 14:57:26 -04:00
Zachary Michaels
b1413fd045
C++ style cast
2014-07-01 14:57:26 -04:00
Zachary Michaels
b3092d4e00
Comment unused functions in cryptonote_core
2014-07-01 14:57:26 -04:00
mydesktop
eba62452c0
set max block size for gbt
2014-06-26 16:42:24 -04:00
monero-project
2a2b36d425
fix function typo
2014-06-24 13:30:41 -04:00
monero-project
c050ff43bf
Fix copy/paste bug, thx Boolberry
2014-06-24 13:20:15 -04:00
NoodleDoodleNoodleDoodleNoodleDoodleNoo
5fcac268b7
Update miner.cpp
...
1. Added support for scratchpad memory allocation.
2014-06-16 03:35:55 -07:00
fluffypony
3bc16dc0e6
proper tx_pool handling from CryptoZoidberg / BBR
2014-06-15 09:48:13 +02:00
monero-project
0ddbd20129
added checkpoint @ 80000
2014-06-14 13:17:27 -04:00
tom
205494f0d1
change hash for keygen from blake to keccak
2014-06-12 19:38:56 -04:00
Thomas Winget
da37b6f15b
allow two-random-numbers wallet generation (but not as default)
2014-06-12 19:05:52 -04:00
Thomas Winget
72c3f36ca4
fixed some pointer- and loop-based derps
2014-06-12 19:05:51 -04:00
Thomas Winget
d22e458c6c
builds, but doesn't link. other than that, electrum-style recovery implemented (but not tested\!)
2014-06-12 19:05:51 -04:00
tom
f70bc3a345
defaulted new parameters in modified functions
2014-06-12 19:05:51 -04:00
Thomas Winget
4f382b3830
most functions prototyped/modified for wallet recovery
2014-06-12 19:05:51 -04:00
mydesktop
75fc3e90b1
Fix for orphan fix (check blocksize)
2014-06-11 17:32:53 -04:00
Neozaru
7fea5645e2
'getinfo' daemon HTTP-RPC returns 'target_height' for progress estimations
2014-06-04 22:50:13 +02:00
Neozaru
8530629e22
Merge bitmonero@monero-project
2014-06-01 18:21:30 +02:00
monero-project
2475ec877f
typo in tx_pool.cpp
2014-05-28 13:19:24 -04:00
mydesktop
9761529941
fix typing mismatch
2014-05-27 16:45:50 -04:00
mydesktop
328a52a543
dynamic tx size scaling for tx mempool
2014-05-26 20:57:50 -04:00
mydesktop
f545fd8ff0
maximum block size 130% of median
2014-05-26 19:51:22 -04:00
mydesktop
31a59785b0
temporary fix for block reward dos
2014-05-25 20:25:37 -04:00
mydesktop
e717125073
enable checkpointed block verification
2014-05-25 15:47:32 -04:00
Neozaru
af5a28efe5
'mining_status' Daemon RPC command
2014-05-25 21:36:12 +02:00
mydesktop
3a3a817678
0.8.8update
2014-05-25 13:06:40 -04:00
NoodleDoodleNoodleDoodleNoodleDoodleNoo
b5b061e0e8
Update tx_extra.h
...
1. Fixed bug where it's impossible to spend merge-mining blocks due to missing serialization support for "tx_etra_merge_mining_tag".
2014-05-13 17:53:20 -07:00
monero-project
5ceffa8c8a
disable checkpointing for security reasons
...
Further investigation of fast sync security is required
2014-05-08 11:12:54 -04:00
NoodleDoodleNoodleDoodleNoodleDoodleNoo
ed444b7175
Update cryptonote_format_utils.cpp
...
Fixed problem with integer saturation when summing summary_amounts and out_amounts in a 32-bit platform.
2014-05-07 17:15:43 -07:00
monero-project
b27f060815
added checkpoint @ 29556
2014-05-07 19:55:34 -04:00
mydesktop
4baedc4838
fix genesis block hash, checkpoint, days behind
2014-05-03 15:17:29 -04:00
mydesktop
333f975760
initial [broken] update
2014-05-03 12:19:43 -04:00
mydesktop
79a4bedc36
mac osx building fixes
2014-04-30 16:50:06 -04:00
mydesktop
67df296650
various fixes to allow mac osx compilation
2014-04-30 13:52:21 -04:00
Henry Hartshorne
6ed4507803
Changed block minor version
2014-04-25 22:08:19 +04:00
thankful_for_today
0fd82c910b
mining bug fixed
2014-04-20 00:53:40 +04:00
thankful_for_today
147aac7c50
checkpoints removed
2014-04-18 12:55:52 +04:00
thankful_for_today
1a8f5ce89a
Bitmonero release
2014-04-18 01:21:40 +04:00
Antonio Juarez
9682a15400
Port mapping with UPnP
2014-04-09 13:14:35 +01:00
Antonio Juarez
a401a02ddb
Improvements in JSON RPC
2014-04-07 16:02:15 +01:00
Antonio Juarez
29c2859a3e
json rpc for wallet and bugfix
2014-04-02 17:00:17 +01:00
Antonio Juarez
8efa1313f3
some fixes
2014-03-20 11:46:11 +00:00
Antonio Juarez
296ae46ed8
moved all stuff to github
2014-03-03 22:07:58 +00:00