Nikolay Volf
7b5d39e0a1
fix network_start regression ( #1629 )
...
* fix network_start regression
* network io handler
* move registration to the network start
2016-07-16 11:31:59 +02:00
keorn
78007cf80b
Die if the DB is newer than the one supported. ( #1630 )
...
* die on DB from the future
* use error type to print messages, print db path
2016-07-16 10:41:09 +02:00
Gav Wood
d14b6871a5
Cleanup of colour code. Use is_a_tty. ( #1621 )
...
* Cleanup of colour code. Use is_a_tty.
* Fix test build.
* Another fix.
2016-07-15 10:11:14 +02:00
Robert Habermeier
d5d0cb0b47
don't batch best block for branches ( #1623 )
2016-07-14 19:16:01 +02:00
Robert Habermeier
517c705ab5
In-memory trie operations ( #1408 )
...
* small cleanups in trie
* Memory trie skeleton
* decode nodes from RLP
* memorytrie -> memorytriedb
* implement Trie for MemoryTrie
* partially implement insert
* implement trie insertion
* don't load whole trie into memory, lookup across memory and db
* re-implement insertion and lazily load necessary nodes from DB
* node removal w/o fixing
* reduce churn in node storage
* finish remove implementation
* committing the in-memory trie
* reload root node after commit
* generate elastic arrays when converting nodes to rlp
* port triedbmut tests over to memorytriedb, fix a few bugs.
* hash count and dirty flag
* initial attempt for node inspection
* back to skeleton
* inspection framework
* implement insertion
* no panic paths in insert
* implement deletion without fixing
* node fixing
* commit nodes to db
* tracing targets and bugfix
* get tests to pass with a lot of tracing
* set playpen iterations to 10
* remove some tracing statements
* make TrieMut::root take &mut self
* replace triedbmut with memorytriedb
* treat empty insert value as removal
* add test for null insert
* fix some style concerns
* trie: use nodehandle for root_node, minor cleanup
2016-07-14 18:06:46 +02:00
Gav Wood
598833d1ea
Fix "pending" parameter on RPC block requests ( #1602 )
...
* Initial commit.
* Pending blocks work.
* Address grumbles.
* Fix up for new API.
2016-07-14 15:24:12 +02:00
Gav Wood
2b193f00d4
Allow RPC to use solc to compile solidity ( #1607 )
...
* Allow use to use solc to compile solidity.
* Remove unneeded commemt.
[si:skip]
* Address grumble and disable incorrect tests.
2016-07-14 14:25:44 +02:00
Nikolay Volf
be7c771efd
IPC RPC deriving for traits ( #1599 )
...
* sorting out the multi-interface dispatch scenario
* codegen expansion for traits
* fix rwlock
2016-07-14 14:25:18 +02:00
Robert Habermeier
e0efe577b3
Merge pull request #1619 from ethcore/kcov-cache
...
Utilize cached kcov if exists
2016-07-14 13:29:40 +02:00
Tomasz Drwięga
facbb93c62
Fixing no-ui feature ( #1618 )
...
* Fixing no-ui feature
* Extra line
2016-07-14 12:52:24 +02:00
Nikolay Volf
06e8ae19e3
Merge pull request #1614 from ethcore/cache-pref
...
Couple of rocksdb optimizations
2016-07-14 12:37:08 +02:00
Tomasz Drwięga
6c205067b1
Miner tests ( #1597 )
...
* Un-ignoring RPC test
* Additional tests for importing transactions
2016-07-14 12:16:53 +02:00
Nikolay Volf
44bc8a08fb
Sync IPC interface ( #1584 )
...
* chain notify trait
* replaced network service with io service
* fix ethcore crate warnings
* refactored network service without generic
* ethcore fix
* ethsync refactoring
* proper linking of notify
* manage network interface
* rpc crate rebinding
* full rewire
* sync internal io service
* fix deadlock
* fix warnings and removed async io
* sync imported message propagation
* fix rpc warnings
* binart warnings
* test fixes
* rpc mocks and tests
* fix util doctest
* fix message name and removed empty notifier
* pointers mess & dark mode fixed
* fixed sync doctest
* added few warnings
* fix review
* new convention match
* fix error unwraps
* doctest fix
* basic library re-layout
* missing files to relayout
* duplicating network config on sync level
* binary serializers for config
* ipc endpoint for manage
* ipc endpoint for sync
* handshake sorting out
* sorting out the multi-interface dispatch scenario
* fixing tests
* fix doctest
2016-07-14 12:07:33 +02:00
Tomasz Drwięga
80c734efe2
Utilize cached kcov if exists
2016-07-14 11:20:19 +02:00
Arkadiy Paronyan
8d0e05adb7
Make sure reserved peers are in the node table ( #1616 )
2016-07-14 10:38:53 +02:00
Nikolay Volf
50c43bd819
Merge pull request #1610 from ethcore/db-repair
...
Fix bloomchain on blockchain repair
2016-07-14 01:14:57 +02:00
Marek Kotewicz
1053f3610c
fixed #1606 ( #1615 )
2016-07-13 21:10:20 +02:00
Robert Habermeier
a7511b6b02
fix benchmark compilation ( #1612 )
2016-07-13 20:45:15 +02:00
Tomasz Drwięga
1b86f8368d
Updating jsonrpc-http-server ( #1611 )
2016-07-13 20:19:48 +02:00
Robert Habermeier
36d3d0d7d7
replace synchronization primitives with those from parking_lot ( #1593 )
...
* parking_lot in cargo.toml
* replace all lock invocations with parking_lot ones
* use parking_lot synchronization primitives
2016-07-13 19:59:59 +02:00
NikVolf
9fd95e6694
wiping also for non-prefixed db
2016-07-13 19:51:03 +02:00
Robert Habermeier
4226c0f631
Merge pull request #1604 from ethcore/noui
...
ui compilation feature
2016-07-13 19:20:10 +02:00
NikVolf
9a0a5b4c22
disable wal & set block based cache when prefix specified
2016-07-13 19:05:06 +02:00
NikVolf
3ac33ceda0
block options for prefixed
2016-07-13 18:43:24 +02:00
Robert Habermeier
0f83ef6a0b
Merge pull request #1608 from ethcore/pow-opt
...
is_zero() and pow() optimisations for uint
2016-07-13 17:33:11 +02:00
Tomasz Drwięga
fc6e598b40
Merge branch 'master' into noui
...
Conflicts:
.travis.yml
2016-07-13 17:20:50 +02:00
Nikolay Volf
691e55227d
Merge pull request #1591 from tomusdrw/optimizing-build
...
Optimizing & Cleaning the build
2016-07-13 17:15:46 +02:00
Tomasz Drwięga
6738fe8268
Merge branch 'noui' of github.com:ethcore/parity into noui
2016-07-13 16:39:19 +02:00
Tomasz Drwięga
507a638762
Disabling ethcore-dapps testing (for a while)
2016-07-13 16:39:03 +02:00
arkpar
80d59949ff
Fix bloomchain on blockchain repair
2016-07-13 14:28:46 +02:00
Tomasz Drwięga
29a5c1785c
Disabling building UI
2016-07-13 12:39:51 +02:00
Tomasz Drwięga
91ae781f05
Disabling building UI
2016-07-13 11:59:47 +02:00
NikVolf
e75274df66
more pow opts
2016-07-13 11:58:08 +02:00
Tomasz Drwięga
e0f6709f05
Merge branch 'master' into noui
...
Conflicts:
Cargo.toml
2016-07-13 11:48:04 +02:00
NikVolf
02ecb6b37b
pow uses shifts and zero comp
2016-07-13 11:29:18 +02:00
Tomasz Drwięga
29076da4b7
UI feature
2016-07-13 11:10:43 +02:00
Gav Wood
420f2ad6c4
Update parity-dapps to be able tobuild on mac.
2016-07-13 09:10:46 +02:00
Gav Wood
3abe3e1fbc
Fix logging ( #1590 )
...
* Strip colour for everywhere except the terminal.
* Log to file.
Fixes #1560 .
* Fix indentation.
[ci:skip]
* Remove unnecessary clone()ing.
* Update setup_log.rs
* remove unnecessary mutex in logging (#1601 )
2016-07-13 09:05:26 +02:00
Tomasz Drwięga
cc19f11c4d
Merge branch 'master' into optimizing-build
...
Conflicts:
.travis.yml
2016-07-12 20:22:35 +02:00
Tomasz Drwięga
11cae70cdd
No-ui compilation feature
2016-07-12 20:15:36 +02:00
Robert Habermeier
b37ceccf02
Merge pull request #1566 from ethcore/streamlined-ui
...
Using streamlined parity-ui repository
2016-07-12 19:24:16 +02:00
Robert Habermeier
ab44168e1c
Merge pull request #1595 from ethcore/evm-instructions
...
Optimizing InstructionInfo access.
2016-07-12 19:21:41 +02:00
Tomasz Drwięga
4cf8df87e5
Merge pull request #1594 from rphmeier/migration_progress
...
V7 Migration progress indicator
2016-07-12 17:23:03 +02:00
Tomasz Drwięga
a784240734
Fixing formatting for coverage
2016-07-12 16:22:05 +02:00
Nikolay Volf
d956b7cea3
Merge pull request #1577 from ethcore/pv64
...
bring snapshotting work into master
2016-07-12 13:46:55 +02:00
Tomasz Drwięga
c3925a494d
Fixing coverage reports generation
2016-07-12 13:25:55 +02:00
Robert Habermeier
60302acb94
merge with master
2016-07-12 13:09:42 +02:00
Robert Habermeier
c26627d968
Merge branch 'master' into migration_progress
2016-07-12 12:46:34 +02:00
Robert Habermeier
86df371a72
dots on same line
2016-07-12 12:20:43 +02:00
Tomasz Drwięga
174e142ad9
Updating UI
2016-07-12 12:06:17 +02:00