Afri Schoedon
0feb0bb6e7
Backports beta ( #7780 )
...
* Bump beta to 1.9.2
* Update ropsten.json (#7776 )
2018-02-01 21:09:42 +01:00
GitLab Build Bot
3b5a8d5d69
[ci skip] js-precompiled 20180201-173714
2018-02-01 17:38:09 +00:00
Denis S. Soldatov aka General-Beck
aca9f13d45
snapcraft push beta
2018-02-01 17:31:13 +03:00
GitLab Build Bot
e09bef98fb
[ci skip] js-precompiled 20180201-110702
2018-02-01 11:07:58 +00:00
GitLab Build Bot
ceb590a360
[ci skip] js-precompiled 20180201-094935
2018-02-01 09:50:52 +00:00
5chdn
75c0db2b15
Trigger CI
2018-02-01 09:29:47 +01:00
GitLab Build Bot
70b42345c5
[ci skip] js-precompiled 20180201-070128
2018-02-01 07:02:34 +00:00
André Silva
a42d780d02
[Beta] Backports ( #7756 )
...
* Filter-out nodes.json (#7716 )
* Filter-out nodes.json
* network: sort node table nodes by failure ratio
* network: fix node table tests
* network: fit node failure percentage into buckets of 5%
* network: consider number of attempts in sorting of node table
* network: fix node table grumbles
* Fix client not being dropped on shutdown (#7695 )
* parity: wait for client to drop on shutdown
* parity: fix grumbles in shutdown wait
* parity: increase shutdown timeouts
* Wrap --help output to 120 characters (#7626 )
* Update Clap dependency and remove workarounds
* WIP
* Remove line breaks in help messages for now
* Multiple values can only be separated by commas (closes #7428 )
* Grumbles; refactor repeating code; add constant
* Use a single Wrapper rather than allocate a new one for each call
* Wrap --help to 120 characters rather than 100 characters
2018-01-31 21:45:23 +01:00
GitLab Build Bot
582fa8ce45
[ci skip] js-precompiled 20180131-171157
2018-01-31 17:13:01 +00:00
Jaco Greeff
73be0fb096
[beta] Token filter balances (throttle) ( #7742 )
...
* [beta] Token filter balances (throttle)
* Cleanups
* Remove unused uniq
* Update @parity/shared to 2.2.23
* Remove unused code paths
2018-01-31 14:59:53 +01:00
Afri Schoedon
627d1a4971
Bump beta to 1.9.1 ( #7751 )
2018-01-31 13:25:11 +01:00
Jaco Greeff
a7807106f5
[beta] Explicitly add branch name ( #7754 )
...
* [beta] Explicitly add branch name
* Fix cargo update branch to beta
2018-01-31 12:04:04 +01:00
Tomasz Drwięga
33b39f0725
Revert "revert to #7677 #7679 " ( #7715 )
...
This reverts commit 568dc33a02 .
2018-01-29 11:43:30 +01:00
Denis S. Soldatov aka General-Beck
53ec1141cf
fix permissions
2018-01-25 03:45:03 +03:00
Denis S. Soldatov aka General-Beck
145229d46d
add display of stages in js-release
2018-01-25 03:38:31 +03:00
Denis S. Soldatov aka General-Beck
568dc33a02
revert to #7677 #7679
2018-01-25 03:23:33 +03:00
Denis S. Soldatov aka General-Beck
cf10450108
add display of stages in js-release
2018-01-25 02:16:58 +03:00
GitLab Build Bot
fe779686ca
[ci skip] js-precompiled 20180124-230347
2018-01-24 23:04:39 +00:00
Denis S. Soldatov aka General-Beck
58c1dbe322
Update gitlab-test.sh
2018-01-24 23:52:00 +01:00
Denis S. Soldatov aka General-Beck
14b578832d
Update gitlab-test.sh
2018-01-24 23:39:03 +01:00
Denis S. Soldatov aka General-Beck
e961398393
Update gitlab-test.sh
2018-01-24 23:25:06 +01:00
Denis S. Soldatov aka General-Beck
0fad2a6d8c
Update gitlab-test.sh
2018-01-24 23:12:09 +01:00
Denis S. Soldatov aka General-Beck
f3bcada7b9
Update gitlab-test.sh
2018-01-24 23:09:39 +01:00
Amaury Martiny
b814f1ccbf
Add when when too many accounts ( #7677 ) ( #7679 )
2018-01-24 09:45:08 +01:00
Afri Schoedon
cad91df2b8
Update installer.nsi
2018-01-23 22:37:33 +01:00
Denis S. Soldatov aka General-Beck
50a58e1ae8
fix conditions in gitlab-test ( #7676 )
...
* fix conditions in gitlab-test
* Update gitlab-test.sh
2018-01-23 14:55:02 +03:00
Denis S. Soldatov aka General-Beck
1e36fc5d0f
remove cargo cache
2018-01-23 14:42:24 +03:00
Marek Kotewicz
fa6a0a6b60
Backports to beta ( #7660 )
...
* Improve handling of RocksDB corruption (#7630 )
* kvdb-rocksdb: update rust-rocksdb version
* kvdb-rocksdb: mark corruptions and attempt repair on db open
* kvdb-rocksdb: better corruption detection on open
* kvdb-rocksdb: add corruption_file_name const
* kvdb-rocksdb: rename mark_corruption to check_for_corruption
* Hardening of CSP (#7621 )
* Fixed delegatecall's from/to (#7568 )
* Fixed delegatecall's from/to, closes #7166
* added tests for delegatecall traces, #7167
* Light client RPCs (#7603 )
* Implement registrar.
* Implement eth_getCode
* Don't wait for providers.
* Don't wait for providers.
* Fix linting and wasm tests.
* Problem: AttachedProtocols don't get registered (#7610 )
I was investigating issues I am having with Whisper support. I've
enabled Whisper on a custom test network and inserted traces into
Whisper handler implementation (Network<T> and NetworkProtocolHandler
for Network<T>) and I noticed that the handler was never invoked.
After further research on this matter, I found out that
AttachedProtocol's register function does nothing:
https://github.com/paritytech/parity/blob/master/sync/src/api.rs#L172
but there was an implementation originally:
99075ad#diff-5212acb6bcea60e9804ba7b50f6fe6ec and it did the actual
expected logic of registering the protocol in the NetworkService.
However, as of 16d84f8#diff-5212acb6bcea60e9804ba7b50f6fe6ec ("finished
removing ipc") this implementation is gone and only the no-op function
is left.
Which leads me to a conclusion that in fact Whisper's handler never gets
registered in the service and therefore two nodes won't communicate
using it.
Solution: Resurrect original non-empty `AttachedProtocols.register`
implementation
Resolves #7566
* Fix Temporarily Invalid blocks handling (#7613 )
* Handle temporarily invalid blocks in sync.
* Fix tests.
2018-01-23 12:32:34 +01:00
Denis S. Soldatov aka General-Beck
a8fc42d282
add docker build for beta ( #7671 )
...
* add docker build for beta
* add cargo cache
2018-01-23 06:19:39 +03:00
Denis S. Soldatov aka General-Beck
c6685a7f57
fix snapcraft build for beta ( #7670 )
2018-01-23 04:12:22 +03:00
Denis S. Soldatov aka General-Beck
736a8c40f0
Update Parity.pkgproj
...
1.10.0 ->1.9.0
2018-01-23 02:53:18 +03:00
Denis S. Soldatov aka General-Beck
5f74f8c265
update gitlab build from master
...
Signed-off-by: Denis S. Soldatov aka General-Beck <general.beck@gmail.com >
2018-01-23 01:50:52 +03:00
GitLab Build Bot
97ed569588
[ci skip] js-precompiled 20180119-115500
2018-01-19 11:55:49 +00:00
Jaco Greeff
6766ef988d
Update references to dapp sources ( #7634 ) ( #7636 )
...
* Update plugin references
* Update dapp references
* Update console references
2018-01-19 12:19:33 +01:00
GitLab Build Bot
8a87cfb893
[ci skip] js-precompiled 20180118-163407
2018-01-18 16:34:59 +00:00
Jaco Greeff
54aebdcb45
Update tokenreg ( #7618 ) ( #7619 )
...
* Update tokenreg
* Add commit hash
2018-01-18 16:54:23 +01:00
GitLab Build Bot
86a6145d76
[ci skip] js-precompiled 20180117-211011
2018-01-17 21:11:06 +00:00
Afri Schoedon
718020b64b
[beta] fix cache:key ( #7598 )
...
* Bump 1.9 to beta
* Update .gitlab-ci.yml
fix cache:key
2018-01-17 23:36:13 +03:00
Afri Schoedon
8c36a56365
Bump 1.9 to beta ( #7533 )
2018-01-17 12:28:21 +01:00
GitLab Build Bot
7bccaa5c15
[ci skip] js-precompiled 20180111-130237
2018-01-11 13:03:32 +00:00
Jaco Greeff
98ec46fff6
[beta] Trigger js-precompiled ( #7535 )
2018-01-11 13:27:01 +01:00
GitLab Build Bot
8dc584ece9
[ci skip] js-precompiled 20180111-094838
2018-01-11 09:50:08 +00:00
André Silva
63d154dad3
kvdb: update rust-rocksdb version ( #7512 )
2018-01-10 11:23:37 +01:00
Amaury Martiny
0030bb4f1d
Update js-api ( #7510 )
2018-01-09 17:57:52 +01:00
Tomasz Drwięga
69d7c4f519
Expose default gas price percentile configuration in CLI ( #7497 )
...
* Expose gas price percentile.
* Fix light eth_call.
* fix gas_price in light client
2018-01-09 12:43:36 +01:00
Fabian
1e8533acbc
Update README.md
2018-01-09 12:21:24 +01:00
Jay Little
ab7335d21d
Use https connection ( #7503 )
...
Use https when connecting to etherscan.io API for price-info
2018-01-09 12:17:01 +01:00
Kirill Pimenov
bdc3d6fee0
More thorough changes detection ( #7472 )
...
* More thorough changes detection
This basically trades false-negatives ("dumb" last commit not touching
Rust on a Rust-touching branch) for false-positives (all builds against
`stable` and `beta` will run all tests almost always).
This seems to be a reasonable tradeoff.
Closes #6507
* We don't have Appveyor anymore
* before_script sections are not merged
* Limiting commit depth breaks branching detection
2018-01-08 21:23:56 +03:00
GitLab Build Bot
4c22ca2721
[ci skip] js-precompiled 20180108-171712
2018-01-08 17:18:32 +00:00
Amaury Martiny
825a962323
Fix small layout issues ( #7500 )
...
* Fix layout bug
* Change position of red signing label
2018-01-08 17:43:55 +01:00
GitLab Build Bot
9c88e755e2
[ci skip] js-precompiled 20180108-160030
2018-01-08 16:02:07 +00:00
Amaury Martiny
c6b0db61e7
Show all accounts on Topbar ( #7498 )
...
* Show all accounts in the top bar
* Update to latest js-shared
* Add comments
* Update refs and remove dapp-dapp-accounts
2018-01-08 16:21:52 +01:00
Afri Schoedon
a553485bbd
Update Parity Mainnet Bootnodes ( #7476 )
...
* Update Parity Mainnet Bootnodes
* Replace the Azure HDD bootnodes with the new ones :)
2018-01-08 15:06:08 +01:00
Marek Kotewicz
7316cb9d92
fixed panic when io is not available for export block, closes #7486 ( #7495 )
2018-01-08 14:46:29 +01:00
Tomasz Drwięga
33b8f28f62
Advance AuRa step as far as we can and prevent invalid blocks. ( #7451 )
...
* Advance AuRa step as far as we can.
* Wait for future blocks.
2018-01-08 14:46:11 +01:00
GitLab Build Bot
47b2b151ce
[ci skip] js-precompiled 20180108-085319
2018-01-08 08:54:35 +00:00
Amaury Martiny
a52d601f5c
Update package-lock in js-old ( #7494 )
...
* Revert to latest package-lock for js-old
* Update package-lock after npm i
2018-01-08 09:45:07 +01:00
GitLab Build Bot
fc6b1cb4b9
[ci skip] js-precompiled 20180108-084013
2018-01-08 08:41:21 +00:00
Afri Schoedon
ef3cd042fb
Update issue template and readme ( #7450 )
...
* Ask about used network in issue template
* Update Riot-References
* Uppercase Parity
2018-01-08 09:24:49 +01:00
Jaco Greeff
23192e490e
Revert package-lock.jsons to prior rm -rf ( #7492 )
2018-01-08 09:23:28 +01:00
Jaco Greeff
c37a87e490
Explicit checkout ( #7474 )
2018-01-05 17:00:28 +01:00
Jaco Greeff
7e6e024546
Trigger js-precompiled ( #7473 )
2018-01-05 16:18:20 +01:00
Afri Schoedon
36e230ee16
Expanse Byzantium update w/ correct metropolis difficulty increment divisor ( #7463 )
...
* Byzantium Update for Expanse
Here the changes go. Hope I didnt miss anything.
* expip2 changes - update duration limit
* Fix missing EXPIP-2 fields
* Format numbers as hex
* Fix compilation errors
* Group expanse chain spec fields together
* Set metropolisDifficultyIncrementDivisor for Expanse
* Revert #7437
* Add Expanse block 900_000 hash checkpoint
2018-01-05 13:49:07 +01:00
Arkadiy Paronyan
c8ad8aeac4
Updated icons ( #7469 )
2018-01-05 13:44:05 +01:00
Jaco Greeff
71da3af1a2
Cleanup certifications ( #7454 )
...
* Cleanup certifications
* Add key for accounts
2018-01-05 13:26:43 +01:00
Jaco Greeff
ce69c4e6ea
Fix css lint (updated stylelint) ( #7471 )
2018-01-05 12:48:35 +01:00
Jaco Greeff
855c1126a4
Upgrade markdown-loader & marked ( #7467 )
...
* Upgrade markdown-loader & marked
* Align UglifyJS (wallet/shell)
* Add ethereumjs-util Babel compilation
2018-01-05 10:59:35 +01:00
Jaco Greeff
ac95bfa285
Remove test for removed code ( #7461 )
2018-01-04 18:04:59 +01:00
Jaco Greeff
37796bdaa9
Pull in dapp-status ( #7457 )
...
* Remove status from tabs
* Update js-shared, add dapp-status
2018-01-04 17:05:10 +01:00
Afri Schoedon
36bb5ed795
Bump openssl crate ( #7455 )
2018-01-04 16:12:12 +01:00
Jaco Greeff
c417f01a23
Signer updates from global Redux state ( #7452 )
...
* Remove unused layout
* Update to use pending from Redux
* Update @parity/shared
2018-01-04 13:13:15 +01:00
GitLab Build Bot
1d0af99744
[ci skip] js-precompiled 20180103-161510
2018-01-03 16:16:20 +00:00
Marek Kotewicz
75f292154d
Merge pull request #7437 from paritytech/a5-chains-expanse
...
Remove expanse chain
2018-01-03 16:12:39 +01:00
GitLab Build Bot
1764143db5
[ci skip] js-precompiled 20180103-144059
2018-01-03 14:42:11 +00:00
Jaco Greeff
7c1cbd33ff
Store tokens with repeatable id ( #7435 )
2018-01-03 15:25:45 +01:00
5chdn
5e4febfc2d
Fix tests
2018-01-03 15:14:49 +01:00
5chdn
0292348bd6
Remove all EXP references from old wallet
2018-01-03 13:28:03 +01:00
5chdn
27d8befbad
Remove expanse from available chains
2018-01-03 13:24:27 +01:00
Marek Kotewicz
51319ebe3f
Merge pull request #7433 from paritytech/td-strict-config
...
Strict config parsing
2018-01-03 12:27:17 +01:00
GitLab Build Bot
7643e0e17f
[ci skip] js-precompiled 20180103-105415
2018-01-03 10:55:33 +00:00
Tomasz Drwięga
56311cf0b5
Merge branch 'master' into td-strict-config
2018-01-03 11:07:08 +01:00
Tomasz Drwięga
e439eae54f
Enable strict config parsing.
2018-01-03 11:05:53 +01:00
André Silva
e114b0b28d
Upgrade to RocksDB 5.8.8 and tune settings to reduce space amplification ( #7348 )
...
* kvdb-rocksdb: update to RocksDB 5.8.8
* kvdb-rocksdb: tune RocksDB options
* Switch to level-style compaction
* Increase default block size (16K), and use bigger blocks for HDDs (64K)
* Increase default file size base (64MB SSDs, 256MB HDDs)
* Create a single block cache shared across all column families
* Tune compaction settings using RocksDB helper functions, taking into account
memory budget spread across all columns
* Configure backgrounds jobs based on the number of CPUs
* Set some default recommended settings
* ethcore: remove unused config blockchain.db_cache_size
* parity: increase default value for db_cache_size
* kvdb-rocksdb: enable compression on all levels
* kvdb-rocksdb: set global db_write_bufer_size
* kvdb-rocksdb: reduce db_write_bufer_size to force earlier flushing
* kvdb-rocksdb: use master branch for rust-rocksdb dependency
2018-01-03 11:00:37 +01:00
Jaco Greeff
8405edab41
Fix status layout ( #7432 )
2018-01-03 10:49:52 +01:00
Marek Kotewicz
6a01113610
Merge pull request #7412 from paritytech/td-trace-failed-calls
...
Fix tracing failed calls.
2018-01-02 15:43:33 +01:00
Marek Kotewicz
4ce643ba3f
Merge pull request #7421 from poanetwork/whisper-relay
...
Problem: sending any Whisper message fails
2018-01-02 14:25:37 +01:00
Marek Kotewicz
f3e7d94fc4
Merge pull request #7368 from paritytech/td-future-blocks
...
Wait for future blocks in AuRa
2018-01-02 14:21:50 +01:00
Marek Kotewicz
8cd1f890ca
Merge pull request #7426 from paritytech/td-fix-final
...
Fix final feature.
2018-01-02 14:09:18 +01:00
Marek Kotewicz
7deeb26e21
Merge pull request #7425 from paritytech/td-state-lock
...
Use RwLock for state DB
2018-01-02 11:57:29 +01:00
Tomasz Drwięga
457d8baf30
Fix final feature.
2018-01-02 11:02:04 +01:00
GitLab Build Bot
9d33f6f29a
[ci skip] js-precompiled 20180102-090245
2018-01-02 09:04:01 +00:00
Tomasz Drwięga
823e0a22ca
Merge branch 'master' into td-state-lock
2018-01-02 09:55:53 +01:00
Amaury Martiny
bc91eaf4d0
Update branding on UI ( #7370 )
...
* Update packages
* Update pictures for v1
2018-01-02 09:48:41 +01:00
Tomasz Drwięga
c6aea0cae6
Move StateDB to RwLock
2018-01-02 09:43:08 +01:00
Yurii Rashkovskii
9c0fceb192
Problem: sending any Whisper message fails
...
The error is "PoW too low to compete with other messages"
This has been previously reported in #7144
Solution: prevent the move semantics
The source of the error is in PoolHandle.relay
implementation for NetPoolHandle.
Because of the move semantics, `res` variable is in fact
copied (as it implements Copy) into the closure and for
that reason, the returned result is always `false.
2018-01-01 20:54:15 -08:00
Afri Schoedon
51e6e0b4bd
Changelog for 1.8.5 and 1.7.11 ( #7401 )
...
* Add Changelog for 1.7.11
* Add Changelog for 1.8.5
* Markdownify issue links
2017-12-30 01:57:44 +01:00
Tomasz Drwięga
67a74e155d
Fix tracing failed calls.
2017-12-29 18:11:55 +01:00
Marek Kotewicz
2586eaef92
Merge pull request #7359 from VladLupashevskyi/transactions-permission-contract-fix
...
Added checking tx-type using transactions permission contract for miners
2017-12-29 11:46:10 +01:00
Marek Kotewicz
5fee880fbb
Merge pull request #7409 from paritytech/dircrate2
...
standalone dir crate, replaces #7383
2017-12-29 11:44:26 +01:00
Marek Kotewicz
483480d7a1
Merge pull request #7336 from paritytech/secretstore_rpc_sign_raw_hash
...
SecretStore: secretstore_signRawHash method
2017-12-29 11:10:29 +01:00
debris
7b40f1cfe9
Merge branch 'master' into dircrate2
2017-12-29 10:45:11 +01:00
Marek Kotewicz
81d4187d14
Merge pull request #7331 from paritytech/secretstore_resurrect_error404
...
SecretStore: return error 404 when there's no key shares for given key on all nodes
2017-12-29 05:33:47 -04:00
Marek Kotewicz
f8bd6b9f63
Merge pull request #7101 from paritytech/secretstore_kovan
...
SecretStore: Kovan integration initial version
2017-12-29 05:31:51 -04:00
Tomasz Drwięga
48a15cecf8
Update bootnodes ( #7363 )
...
* Updating mainnet bootnodes.
* Add additional parity-beta bootnodes.
* Restore old parity bootnodes and update foudation bootnodes
2017-12-28 15:12:19 +01:00
Nicolas Ochem
09573497b0
move constants to platform-specific module too
2017-12-28 03:16:52 -08:00
Vlad Lupashevskyi
45116099c5
Merge remote-tracking branch 'remotes/upstream/master' into transactions-permission-contract-fix
2017-12-28 12:56:21 +02:00
Tomasz Drwięga
26e4fc680c
Fix default CORS settings. ( #7387 )
...
* Fix default CORS settings.
* Add info regarding special options.
2017-12-27 18:56:06 +01:00
Nicolas Ochem
a4a9c53b13
use platform module as intended
2017-12-27 06:17:39 -08:00
Kirill Pimenov
eb1bb8f5bd
Merge pull request #7390 from paritytech/td-version
...
Fix version
2017-12-27 13:38:03 +01:00
Svyatoslav Nikolsky
fc0eb600f3
checked_sub -> saturating_sub
2017-12-27 15:21:31 +03:00
Tomasz Drwięga
5b5dd85cf9
Fix lock file.
2017-12-27 11:32:05 +01:00
Tomasz Drwięga
74d2896397
Fix version.
2017-12-27 11:02:39 +01:00
Tomasz Drwięga
a15f62d907
Merge branch 'master' into td-future-blocks
2017-12-27 11:01:08 +01:00
Svyatoslav Nikolsky
2a73101fab
updated doc
2017-12-27 11:44:47 +03:00
Svyatoslav Nikolsky
c0e7abcc81
Merge branch 'master' into secretstore_kovan
2017-12-27 11:44:28 +03:00
Nicolas Ochem
a8001ab453
Add doc everywhere, warn on missing docs
2017-12-26 00:54:34 -08:00
Nicolas Ochem
268e8f5a64
move helper functions to platform module
2017-12-26 00:54:34 -08:00
Nicolas Ochem
2e12a2db50
Fix #6209 - introduce standalone dir crate
...
* created the dir crate in util
* moved code from ethstore/src/dir/paths.rs to dir crate
* rename dir module in ethstore to accounts_dir to distinguish it
from the dir crate
* changes after @tomusdrw on #6952
2017-12-26 00:54:34 -08:00
Vlad Lupashevskyi
31ffb467f5
Passing verify tx errors to the caller
2017-12-23 00:00:27 +02:00
Vlad Lupashevskyi
0d5603eece
Use is_err instead of match
2017-12-22 23:14:24 +02:00
Vlad Lupashevskyi
d6ae6e315e
Check tx-type before importing transactions to the queue
2017-12-22 22:50:09 +02:00
Vlad Lupashevskyi
9d35cc1881
"from" replaced with ".into()"
2017-12-22 22:48:37 +02:00
Nikolay Volf
82340c058a
Wasm runtime update ( #7356 )
...
* call augmented, wasm-tests updated
* fix all call tests
* fix comments
2017-12-22 21:54:35 +03:00
Marek Kotewicz
d80dd81d77
parity-version pr reopen ( #7136 )
...
* parity-version module split from util
removed unused util deps and features
trigger buildbot again
only kvdb links rocksdb
snappy linker issues
* rm snappy
* fixed old version imports
2017-12-22 09:37:39 -04:00
Marek Kotewicz
7c24d0665e
Merge pull request #7355 from paritytech/td-clippy
...
Get rid of clippy remainings.
2017-12-22 07:09:26 -04:00
Marek Kotewicz
6f516607a1
Merge pull request #7357 from paritytech/unwrap-or
...
Avoid using ok_or with allocated argument
2017-12-22 06:55:37 -04:00
Tomasz Drwięga
83447c201b
Make accounts refresh time configurable. ( #7345 )
...
* Configurable accounts refresh time.
* Fix tests.
2017-12-22 06:33:49 +03:00
Nicolas Gotchac
276496fb4b
Enable traces for DEV chain ( #6949 ) ( #7327 )
2017-12-22 06:33:17 +03:00
Vlad Lupashevskyi
24378f3c44
Added checking tx-type using transactions permission contract for miners
2017-12-21 22:42:36 +02:00
Tomasz Drwięga
d6f160e868
Don't check max.
2017-12-21 16:16:55 +01:00
Tomasz Drwięga
a5a7c1827a
Some more.
2017-12-21 15:37:10 +01:00
Tomasz Drwięga
7d4e4c7a62
Mark future blocks as temporarily invalid.
2017-12-21 15:34:27 +01:00
Yurii Rashkovskii
d5b81ead71
Problem: AuRa's unsafeties around step duration ( #7282 )
...
Firstly, `Step.duration_remaining` casts it to u32, unnecesarily
limiting it to 2^32. While theoretically this is "good enough" (at 3
seconds steps it provides room for a little over 400 years), it is
still a lossy way to calculate the remaining time until the next step.
Secondly, step duration might be zero, triggering division by zero
in `Step.calibrate`
Solution: rework the code around the fact that duration is
typically in single digits and never grows, hence, it can be represented
by a much narrower range (u16) and this highlights the fact that
multiplying u64 by u16 will only result in an overflow in even further
future, at which point we should panic informatively (if anybody's
still around)
Similarly, panic when it is detected that incrementing the step
counter wrapped around on the overflow of usize.
As for the division by zero, prevent it by making zero an invalid
value for step duration. This will make AuRa log the constraint
mismatch and panic (after all, what purpose would zero step duration
serve? it makes no sense within the definition of the protocol,
as finality can only be achieved as per the specification
if messages are received within the step duration, which would violate
the speed of light and other physical laws in this case).
2017-12-21 14:59:09 +01:00
Svyatoslav Nikolsky
9a5d0fed2c
SecretStore: return error if http listner init has failed
2017-12-21 16:54:24 +03:00
NikVolf
516725abe4
ok_or -> ok_or_else
2017-12-21 16:50:58 +03:00
Svyatoslav Nikolsky
8d15338c84
SecretStore: removed extra-tracing
2017-12-21 16:20:34 +03:00
Svyatoslav Nikolsky
9104d4673c
SecretStore: reorganize service contract read
2017-12-21 16:19:15 +03:00
Tomasz Drwięga
00883e477a
Get rid of clippy remainings.
2017-12-21 11:27:26 +01:00
Svyatoslav Nikolsky
ff094e0a03
Revert "SecretStore: get rid of read_logs in ServiceContract"
...
This reverts commit 6efca8860a .
2017-12-21 11:44:55 +03:00
Svyatoslav Nikolsky
ee1ce42546
SecretStore: extracted TasksQueue to separate file
2017-12-20 19:27:47 +03:00
Svyatoslav Nikolsky
b10d567386
SecretStore: ClusterSession::wait_session helper
2017-12-20 19:11:48 +03:00
Yurii Rashkovskii
ab2caee0a3
Problem: Cargo.toml file contains [project] key ( #7346 )
...
This key is not recognized by some software
(like carnix).
It is also not documented in http://doc.crates.io/manifest.html
Solution: rename this key to [package]
2017-12-20 16:41:52 +01:00
Svyatoslav Nikolsky
6efca8860a
SecretStore: get rid of read_logs in ServiceContract
2017-12-20 17:22:28 +03:00
Svyatoslav Nikolsky
b7a744be59
SecretStore: require N confirmations in PendingRequestsIterator
2017-12-20 17:05:32 +03:00
Svyatoslav Nikolsky
d7650e2b9c
SecretStore: TrustedClient
2017-12-20 16:02:21 +03:00
Svyatoslav Nikolsky
794de9f743
SecretStore: fixing grumbles (part1)
2017-12-20 14:50:46 +03:00
GitLab Build Bot
2f9532fe4b
[ci skip] js-precompiled 20171220-114610
2017-12-20 11:47:16 +00:00
Jaco Greeff
2856305977
Fix broken flex modal layouts ( #7343 )
2017-12-20 12:36:04 +01:00
GitLab Build Bot
25a3c001ad
[ci skip] js-precompiled 20171219-170319
2017-12-19 17:04:25 +00:00
Amaury Martiny
3fa7d09b5e
Fix dappIcon & Fix Signer Pending ( #7338 )
...
* Move signerPending inside this repo
* Use latest version of dappIcon
* Tell babel to ignore node_modules in tests
2017-12-19 17:54:09 +01:00
GitLab Build Bot
6bc88664ce
[ci skip] js-precompiled 20171219-140820
2017-12-19 14:09:23 +00:00
Svyatoslav Nikolsky
6e5c188eef
SecretStore: secretstore_signRawHash RPC
2017-12-19 16:59:37 +03:00
Jaco Greeff
bdd4f62023
Fix wallet token/badge icons not showing up ( #7333 )
...
* Fix wallet icons not showing up
* Fix tests
* Remove debug log (oops)
2017-12-19 14:58:30 +01:00
Marek Kotewicz
53dce9ff98
Merge pull request #7222 from ellaismer/ellaism
...
Add Ellaism coin in chain config
2017-12-19 09:34:21 -04:00
Marek Kotewicz
ee030cdcac
Merge pull request #7296 from paritytech/a5-kovan-bootnodes
...
Update bootnodes
2017-12-19 09:32:36 -04:00
GitLab Build Bot
4b016672f3
[ci skip] js-precompiled 20171219-102906
2017-12-19 10:30:17 +00:00
Dmitry Kashitsyn
5f82f0008f
Adds personal_signTransaction RPC method ( #6991 )
...
* Adds personal_signTransaction RPC method
* Fixes sign_transaction() to return RichRawTransaction
* Adds test for invalid password
* Fix after rebase
2017-12-19 10:49:49 +01:00
Tomasz Drwięga
5713bb2099
Fix embeded transport. ( #7326 )
2017-12-19 10:34:34 +01:00
Tomasz Drwięga
9e7f5671a5
Merge branch 'master' into a5-kovan-bootnodes
2017-12-19 10:33:35 +01:00
Tomasz Drwięga
1d9206735b
Transaction Pool re-implementation ( #6994 )
...
* Initial design and some tests.
* Insertion & limits.
* Constructing pending block.
* Change to PendingIterator.
* Removing/cancelling transactions.
* Full status.
* Culling transactions.
* Use bigint.
* Add listener tests.
* Clean up listener types.
* Split into multiple files.
* Add copyright notice.
* Documentation.
* Don't require ownership.
* Fix cull to remove from by_hash.
* Make the queue generic over transactions.
* Address code review.
* Update wasm submodules.
* Fix review grumbles.
* Add some docs.
2017-12-19 10:20:49 +01:00
Svyatoslav Nikolsky
861aa1fa4b
SecretStore: return error 404 when there's no key shares for given key on all nodes
2017-12-19 11:02:13 +03:00
GitLab Build Bot
4971171e8a
[ci skip] js-precompiled 20171218-132345
2017-12-18 13:24:58 +00:00
Jaco Greeff
5cb53ddd8d
UI package bump ( #7318 )
...
* Bump js-ui
* Fix css for status plugins
2017-12-18 12:53:40 +01:00
Robert Habermeier
f99b977399
Merge pull request #7011 from paritytech/whisper-testing
...
test framework and basic test for whisper
2017-12-18 11:48:20 +01:00
GitLab Build Bot
0637de7303
[ci skip] js-precompiled 20171218-102310
2017-12-18 10:24:14 +00:00
Jaco Greeff
3fd94dc40d
CI js-precompiled trigger ( #7316 )
2017-12-18 11:12:36 +01:00
GitLab Build Bot
a638019c17
[ci skip] js-precompiled 20171218-094355
2017-12-18 09:44:58 +00:00
Jaco Greeff
509038c987
Fix inject.js & Signer store duplication ( #7299 )
...
* Remove extension mappings
* Remove duplicated pending stores
2017-12-15 17:52:45 +01:00
Robert Habermeier
8f6f6a068e
detect different node, same-key signing in aura ( #7245 )
...
* detect different node, same-key signing in aura
* reduce scope of warning
2017-12-15 16:29:23 +01:00
5chdn
4a9a0f6f55
Update kovan boot nodes
2017-12-15 15:29:48 +01:00
5chdn
0a808a1ac2
Improve chainspec formatting
2017-12-15 15:29:09 +01:00
Konstantin
bb1e03e9cb
new warp enodes ( #7287 )
...
* new warp enodes
* added one more warp enode; replaced spaces with tabs
2017-12-15 15:19:06 +01:00
Jaco Greeff
c9865e00a5
CSS fixes for v1 ( #7285 )
...
* CSS fixes for v1 (Thanks @ngotchac)
* Remove hack line completely
* Comment around Chrome upgrade
2017-12-15 14:48:10 +01:00
Jaco Greeff
6587dfecc0
Wallet subscriptions & refresh ( #7283 )
...
* Update to @parity/api 2.1.7
* Update packages
* Update after signer API alias
2017-12-15 12:48:51 +01:00
GitLab Build Bot
9821fd92e4
[ci skip] js-precompiled 20171214-193220
2017-12-14 19:33:27 +00:00
Jaco Greeff
a4959c8509
Update inject web3 dependencies ( #7286 )
...
* Remove wallet web3 dependency
* Update shell web3 dependency
2017-12-14 17:32:59 +01:00
Jaco Greeff
4d28facf5e
Some padding around dapp image ( #7276 )
2017-12-13 14:49:40 +01:00
Jaco Greeff
053c009cdb
Expand available middleware methods ( #7275 )
...
* Expand available methods
* Updated with expanded groupings
2017-12-13 12:02:31 +01:00
Nicolas Gotchac
82d7fc54b3
Inject parity script to all dapps // Expand dapps to any ZIP file ( #7260 )
...
* Inject Parity script to all HTML dapps pages
* Small glitch
* Add injection test
* Add Special GHH commit value for serving ZIP files as DAPPS
* Refactor GithubDapp fetcher
* PR Grumbles
2017-12-13 09:56:35 +03:00
GitLab Build Bot
f3297dd44a
[ci skip] js-precompiled 20171212-180737
2017-12-12 18:08:59 +00:00
Amaury Martiny
1851453f00
New Homepage ( #7266 )
...
* Purify dappCard style
* Add support for pinning apps
* Add a section to show pinned apps
* Cleaner code
* Bump dependency versions
* Small tweaks
* Avoid double scrollbars
* Small style updates
* Bump parity/shared version
2017-12-12 17:35:21 +01:00
Tomasz Drwięga
c731b5ef62
Update kovan HF block number. ( #7259 )
2017-12-12 16:03:28 +01:00
Afri Schoedon
0a7f27cb11
CHANGELOG for 1.7.10 and 1.8.4 ( #7265 )
...
* Add Changelog for 1.7.10
* Add Changelog for 1.8.4
* Add missing links
* Fix broken link
2017-12-12 15:37:10 +01:00
GitLab Build Bot
140a78fe0b
[ci skip] js-precompiled 20171212-132048
2017-12-12 13:21:48 +00:00
Jaco Greeff
777bce8a13
Remove extraneous id hashing ( #7269 )
...
* Remove extraenous id hashing
* Update with latest js-shared
2017-12-12 12:09:24 +01:00
Jaco Greeff
11b0cb8da8
Simplify status + content display ( #7264 )
2017-12-12 11:25:57 +01:00
GitLab Build Bot
50ed1f9d1e
[ci skip] js-precompiled 20171211-175904
2017-12-11 18:00:10 +00:00
Jaco Greeff
9202ccccf7
UI redirect to 127.0.0.1 when localhost requested ( #7236 )
...
* JS redirect from localhost -> 127.0.0.1
* ui-no-validation for 127.0.0.1
* Update with tests
2017-12-11 16:50:20 +01:00
GitLab Build Bot
0fe018ff68
[ci skip] js-precompiled 20171211-130343
2017-12-11 13:04:38 +00:00
Brennan Novak
b25f93dda5
usability improvements to security token Dialog #7112 ( #7134 )
2017-12-11 12:59:24 +01:00
Jaco Greeff
16d6f98d7c
Don't display unneeded notifications ( #7237 )
...
* Cleanup overlay transparency
* Don't display "waiting in signer" messages
2017-12-11 11:05:24 +01:00
André Silva
fcddc7751a
Reduce max block timestamp drift to 15 seconds ( #7240 )
...
* reduce max block timestamp drift to 15 seconds
* add test for block timestamp validation within allowed drift
2017-12-08 11:43:31 +01:00
Tomasz Drwięga
77ee23bdd0
Increase allowed time drift to 10s. ( #7238 )
2017-12-08 11:16:20 +01:00
Afri Schoedon
a05c90abb5
Update README.md
2017-12-08 10:32:41 +01:00
Jerome de Tychey
ce390fcd75
improve building from source ( #7239 )
...
Lots of people are having trouble building from source and keep up to date. The main reason seems to be that cargo/rustup is hard to work with. The 'abort' panic strategy error is very frustrating and seems to be solved 100% of time with a clean.
Adding those lines:
When compiling a crate if you receive this error:
```
error: the crate is compiled with the panic strategy `abort` which is incompatible with this crate's strategy of `unwind`
```
Cleaning the repository will most likely solve the issue, try:
```
cargo clean
```
2017-12-08 10:31:21 +01:00
GitLab Build Bot
92f0db7cd7
[ci skip] js-precompiled 20171207-145246
2017-12-07 14:53:50 +00:00
Amaury Martiny
f6f7a87dc6
Fix/Update method permissions ( #7233 )
...
* Use hex everywhere as appId
* Extract requestGroup sub item from clarity
* Change size of icon in SignerPending
2017-12-07 15:10:54 +01:00
Robert Habermeier
3cb4d81eb1
Fix aura difficulty race ( #7198 )
...
* Fix Aura difficulty race
* fix test key
* extract out score calculation
* fix build
2017-12-07 12:17:11 +01:00
GitLab Build Bot
aff781b8bb
[ci skip] js-precompiled 20171206-171108
2017-12-06 17:12:14 +00:00
Svyatoslav Nikolsky
5d792324e6
Merge branch 'master' into secretstore_kovan
2017-12-06 19:56:54 +03:00
Jaco Greeff
f2b51fe9e0
Dependency updates ( #7226 )
...
* Update @parity/ui
* Update deps
2017-12-06 17:29:09 +01:00
GitLab Build Bot
fb0006beee
[ci skip] js-precompiled 20171206-162251
2017-12-06 16:23:52 +00:00
Jaco Greeff
fa6156ed01
Display all dapps (shell) & wallet tabs (v1) by default ( #7213 )
...
* Display contracts tab by default
* Update packages
2017-12-06 16:40:24 +01:00
Jaco Greeff
b1517654e1
Rework dapps list ( #7206 )
...
* Rework dapps list
* Update box sizing
* Remove non-passed-in prop
* PR comments
* Re-adjust key
2017-12-06 15:47:32 +01:00
Ellaismer
dd0fba96a4
Add registrar for ellaism
...
Provided by @5chdn
2017-12-06 22:46:19 +08:00
Robert Habermeier
f61feb33fd
Merge branch 'master' into whisper-testing
2017-12-06 15:23:39 +01:00
Ellaismer
2d3073fc02
Remove compatibility fields to pass chainspec test for Ellaism
2017-12-06 21:01:03 +08:00
Ellaismer
fb073583fe
Add ellaism in --chain helper message
2017-12-06 20:51:34 +08:00
Ellaismer
fcd1f72806
Add Ellaism to SpecType
2017-12-06 20:48:32 +08:00
Ellaismer
dcf6e1d83d
Add basic Elliasm config
2017-12-06 20:46:24 +08:00
Afri Schoedon
76b143a758
Add contributing guidelines and code of conduct. ( #7157 )
...
* Add contributing guidelines to the repository.
* Add code of conduct to the repository.
* Add note on CLA to contributing guidelines.
* Update contribution guideline headings
* Move CoC and ConG to .github
* Fix links
* Remove broken fork link.
2017-12-06 13:15:15 +01:00
GitLab Build Bot
1b898befab
[ci skip] js-precompiled 20171206-102728
2017-12-06 10:28:34 +00:00
Amaury Martiny
7d0780d723
Make Signing Requests more visible ( #7204 )
...
* Add a signerPending component with popup
* Add text when no requests
* Remove lock icon
* Fix lint
* Create separate component from RequestItem
* Render different types of transaction
* Remove blue View button
* Remove useless code
2017-12-06 10:44:50 +01:00
Tomasz Drwięga
d5c21c9707
Send each log as a separate notifications. ( #7175 )
2017-12-05 20:14:50 +03:00
Takehiro Miyao
3284020b04
mistake comment in calc difficulty ( #7154 )
2017-12-05 16:06:04 +01:00
Tomasz Drwięga
7e3872fddc
Maximum uncle count transition ( #7196 )
...
* Enable delayed maximum_uncle_count activation.
* Fix tests.
* Defer kovan HF.
2017-12-05 15:57:45 +01:00
GitLab Build Bot
e52a7de3f7
[ci skip] js-precompiled 20171205-102703
2017-12-05 10:28:13 +00:00
Jaco Greeff
1291a24e4e
Update FirstRun for UI-2 ( #7195 )
...
* WIP
* Update after @parity/ui update
* Update to latest
* Update semver for @parity
* Update & -> &
2017-12-05 10:44:34 +01:00
GitLab Build Bot
e08893fcf1
[ci skip] js-precompiled 20171205-084709
2017-12-05 08:48:09 +00:00
Jaco Greeff
63d86b50e0
Update mocha import stubs ( #7191 )
...
* Update mocha import stubs
* Add .md files to ignore list
2017-12-05 09:03:30 +01:00
Robert Habermeier
e85c98e09a
Merge pull request #7075 from miyao-gmo/feature/estimate_gas_limit
...
escape inifinite loop in estimte_gas
2017-12-04 15:29:23 +01:00
GitLab Build Bot
e76cec4afc
[ci skip] js-precompiled 20171204-115345
2017-12-04 11:54:51 +00:00
Amaury Martiny
83ff213f6c
New account selector UI in top bar ( #7179 )
...
* Add a dropdown popup for account selector
* Install sui latest version for hideOnScroll bug fix
* Update ui
* Update package-lock after rebase
* Require parity/ui v3.0.3
* Pass accountStore as props
* Require parity/ui v3.0.4
2017-12-04 12:09:08 +01:00
Arkadiy Paronyan
dde6baedec
Removed ethcore-util dependency from ethcore-network ( #7180 )
...
* Removed ethcore-util dependency
* Removed snappy
2017-12-02 10:08:04 +01:00
Denis S. Soldatov aka General-Beck
c544c3e518
Merge pull request #7147 from paritytech/pwasm-run
...
WASM test runner utility upgrade
2017-12-01 19:42:28 +03:00
NikVolf
4f12e1dab1
pwasm-run-test utility upgrade
2017-12-01 16:41:09 +03:00
GitLab Build Bot
801b6c4bc8
[ci skip] js-precompiled 20171201-114538
2017-12-01 11:46:30 +00:00
Amaury Martiny
2a7b2c7e32
React 16 ( #7174 )
...
* Update packages to use React 16
* Rollback to react-router v3
* Use component instead of pure one
* Remove warning about mobx
* Make webpack load css from @parity/ui
* Update enzyme to support react16
* Fix lint
* Use @parity/ui v3
* Update refs of plugin-signer-* deps
* Exclude plugin-signer-* from babel processing
* Reupdate refs to old method
* Update refs again
2017-12-01 12:30:13 +01:00
Takehiro Miyao
ad01f99c44
upper limit is gas limit * 10 in estimate gas
2017-12-01 11:12:11 +00:00
Tomasz Drwięga
7663451116
Assorted improvements for ethstore and ethkey ( #6961 )
...
* Testing many passwords for presale wallet.
* Add multiple threads.
* WiP: ethkey brain wallets recover.
* Refactor pre-sale-wallet cracking.
* Generate in multiple threads. Brain with prefix.
* Validate bain wallet phrase.
* Brain wallet recovery.
* Self-review fixes.
* Fix tests.
* More docs.
* Bump versions.
* Remove cmd_find from borked merge.
* Update wasm submodules.
* Use threadpool.
2017-12-01 11:40:07 +03:00
GitLab Build Bot
d1bf0e0e62
[ci skip] js-precompiled 20171130-103432
2017-11-30 10:35:49 +00:00
Jaco Greeff
2e96ffc582
Delete unused package.json (dist) ( #7173 )
2017-11-30 11:12:03 +01:00
GitLab Build Bot
3af1e1b3b0
[ci skip] js-precompiled 20171129-172021
2017-11-29 17:21:25 +00:00
Jaco Greeff
a39e210742
Remove *.css.map & *.js.map ( #7168 )
2017-11-29 18:04:12 +01:00
GitLab Build Bot
538e540dde
[ci skip] js-precompiled 20171129-144917
2017-11-29 14:50:14 +00:00
Jaco Greeff
519648eb01
Use git flag to remove old js artifacts ( #7165 )
2017-11-29 15:33:04 +01:00
GitLab Build Bot
903bbc7912
[ci skip] js-precompiled 20171129-135441
2017-11-29 13:55:41 +00:00
Jaco Greeff
d1d502765b
Cleanup JS build artifacts ( #7164 )
...
* Cleanup JS build artifacts
* Trigger js & js-old
2017-11-29 14:39:57 +01:00
Robert Jensen
ba89f34751
fixes typo in user config path ( #7159 )
2017-11-29 11:12:03 +01:00
GitLab Build Bot
33a96f8ffe
[ci skip] js-precompiled 20171128-091552
2017-11-28 09:16:45 +00:00
Jaco Greeff
8780fa0d68
Pull in new dapp-{methods,visible} dapps ( #7150 )
2017-11-28 10:03:03 +01:00
Marek Kotewicz
e8787c1acf
Merge pull request #7142 from paritytech/pwasm-run
...
WASM test runner utility
2017-11-27 10:16:28 +01:00
Sergey Pepyakin
359b4de3ff
WASM Remove blockhash error ( #7121 )
...
* Remove blockhash error
* Update tests.
2017-11-26 23:18:58 +03:00
NikVolf
13f3113826
pwasm-run-test utility
2017-11-26 00:06:57 +03:00
Marek Kotewicz
68db425fe8
Merge pull request #7067 from sorpaas/patch-1
...
ECIP-1039: Monetary policy rounding specification
2017-11-24 15:49:33 +01:00
GitLab Build Bot
c32a5353b9
[ci skip] js-precompiled 20171124-134823
2017-11-24 13:49:21 +00:00
Marek Kotewicz
06ff816afb
Merge pull request #7129 from paritytech/fix_logger
...
Fixed `RotatingLogger` after migrating to new arrayvec
2017-11-24 14:31:46 +01:00
Jaco Greeff
6836182a36
Push to correct shell branch ( #7135 )
...
* Push to correct shell branch
* Trigger both js & js-old builds
2017-11-24 14:22:37 +01:00
GitLab Build Bot
e802ed04da
[ci skip] js-precompiled 20171124-124119
2017-11-24 12:43:00 +00:00
Svyatoslav Nikolsky
9b63d6f63f
Merge branch 'master' into secretstore_kovan
2017-11-24 15:42:50 +03:00
Wei Tang
8e89be775c
Wrong era used in ECIP1017 test
...
It is era 49, and should correspond to ECIP1017/ECIP1039's era 50.
2017-11-24 20:17:26 +08:00
debris
9f10fa3c3d
Merge branch 'master' into fix_logger
2017-11-24 12:55:33 +01:00
Marek Kotewicz
95d54c4160
Merge pull request #7132 from paritytech/jg-fix-js-skeleton
...
Update js-precompiled ref, trigger JS build
2017-11-24 12:54:53 +01:00
Wei Tang
bef85fb876
Add test for ECIP1017 at block 250000000
2017-11-24 19:31:48 +08:00
Jaco Greeff
9d3ca6ec10
Update js-precompiled ref, trigger JS build
2017-11-24 12:26:43 +01:00
Svyatoslav Nikolsky
37973f9112
SecretStore: do not update servers set until fully synchronized
2017-11-24 13:21:39 +03:00
Svyatoslav Nikolsky
009e350fc7
SecretStore: ACL checker now requires blockchain to be fully synchronized
2017-11-24 13:17:08 +03:00
Svyatoslav Nikolsky
14686f2652
SecretStore: cli option to configure service contract
2017-11-24 12:33:33 +03:00
Svyatoslav Nikolsky
30816d8155
Merge branch 'master' into secretstore_kovan
2017-11-24 11:04:36 +03:00
Svyatoslav Nikolsky
333e0e1637
SecretStore: publish key only if requested through contract
2017-11-24 10:26:24 +03:00
Svyatoslav Nikolsky
989f2a0542
SecretStore: removed code comments
2017-11-24 10:26:16 +03:00
Svyatoslav Nikolsky
5bd2894146
Fixed build && test ( #7128 )
...
* fixed build && test
* fixed rpc tests
2017-11-23 14:47:08 +01:00
Jaco Greeff
53e0e3be14
Update packages, pull in compiled-only repos ( #7125 )
...
* Update packages, pull in compiled-only repos
* Update js-precompiled to point to js-dist-paritytech
* Trigger both js & js-old builds to force update
* Update to bring scripts 100% in-sync
2017-11-23 14:29:56 +01:00
Svyatoslav Nikolsky
0f0a056225
fixed RotatingLogger after migrating to new arrayvec
2017-11-23 09:34:48 +03:00
Svyatoslav Nikolsky
c296b8ac5d
SecretStore: fixed service contract update
2017-11-23 09:33:27 +03:00
Svyatoslav Nikolsky
498a708df7
fixed warnings
2017-11-23 08:22:51 +03:00
Svyatoslav Nikolsky
6a7f523cdb
SecretStore: generation_is_not_retried_if_tried_in_the_same_cycle
2017-11-23 08:07:46 +03:00
Svyatoslav Nikolsky
12e9c1cebc
Merge branch 'master' into secretstore_kovan
2017-11-23 07:27:13 +03:00
Svyatoslav Nikolsky
b036624bac
SecretStore: key_is_read_and_published_when_processing_restore_server_key_task
2017-11-23 07:26:45 +03:00
Svyatoslav Nikolsky
ea9c8a174c
SecretStore: started adding tests for ServiceContractListener
2017-11-22 17:31:34 +03:00
GitLab Build Bot
d793019607
[ci skip] js-precompiled 20171122-140247
2017-11-22 14:12:43 +00:00
Jaco Greeff
cebf493dce
Cleanup top bar, add Home icon for navigation ( #7118 )
...
* Localise images to config.js file
* Remove sample status plugin (commented)
* Update image references from config
* Remove Unknown capability & Capable (only display actions)
* Update to @parity/ui 2.2.14
* Add Home icon on statusbar (go back)
* 2.2.14 -> 2.2.x
* Builtin dapp icons where dappreg not available
2017-11-22 14:56:12 +01:00
Svyatoslav Nikolsky
5d6abfe2f5
SecretStore: implemented restore_server_key
2017-11-22 11:51:51 +03:00
Svyatoslav Nikolsky
a2c12ab13e
SecretStore: fixed warnings
2017-11-22 11:47:15 +03:00
Svyatoslav Nikolsky
85e150dbb5
SecretStore: restore server key
2017-11-22 11:43:01 +03:00
Svyatoslav Nikolsky
7da66c24f0
SecretStore: store joint_public in key_storage
2017-11-22 11:09:48 +03:00
Svyatoslav Nikolsky
df3a8a9234
SecretStore: default ClusterSessionsListener impl
2017-11-22 10:43:16 +03:00
Svyatoslav Nikolsky
fc7f3433b7
SecretStore: removed obsolete traits
2017-11-22 10:21:14 +03:00
Svyatoslav Nikolsky
5a7e065e41
SecretStore: Kovan flush3
2017-11-22 10:05:14 +03:00
Marek Kotewicz
a2c48deab5
Merge pull request #7110 from paritytech/remove-storage-error
...
WASM storage_read and storage_write don't return anything
2017-11-21 20:43:23 +01:00
Marek Kotewicz
309254348b
Merge pull request #7100 from paritytech/jg-dapp-localUrl
...
Local dapp development URL
2017-11-21 20:42:51 +01:00
GitLab Build Bot
d160feeefd
[ci skip] js-precompiled 20171121-164807
2017-11-21 17:04:16 +00:00
Jaco Greeff
fcee1c0ac8
Remove unused and duplicated files in js-old ( #7082 )
...
* Cleanup v1 build process, application-only
* Remove built-in dapps from build (duplicated)
* User @parity/api instead of local version
* Update references to @parity/abi
* Remove unused js-old api/abi folders
* Remove duplicated v1 jsonrpc
* Cleanup unused routes
* Update manifest with wallet image
* Update wallet logo
* Re-add missing test.sh
* Update rpc mocks
* Update tests for Providers
* Use flex for iframe & status
* Additional cleanups (Home screen for embed)
* Keep statusbar fixed (and non-overallping with dapps)
2017-11-21 17:38:06 +01:00
GitLab Build Bot
bc17c61d14
[ci skip] js-precompiled 20171121-150329
2017-11-21 15:14:37 +00:00
Amaury Martiny
570fc56af7
Optimize & group dapp requests ( #7083 )
...
* Group similar methods in same grouping
* Add a shell_getMethodGroups API
* Small code clean changes
* Fix bug dapp.name not showing
* Additional error handling
* Store sources in own map
* Remove observable variables where not needed
* Refactor code and fix bug dapp not showing on approve
2017-11-21 15:50:38 +01:00
Jaco Greeff
e7543f656a
Remove debug log
2017-11-21 15:17:05 +01:00
Jaco Greeff
20f8943eb3
Cleanup debug info
2017-11-21 15:04:47 +01:00
Sergey Pepyakin
3716b09b2e
Update wasm-tests
2017-11-21 17:03:14 +03:00
Sergey Pepyakin
66b2db0137
Update gas values
2017-11-21 17:03:14 +03:00
Sergey Pepyakin
7564b05572
Make storage_read/write return nothing
2017-11-21 17:03:13 +03:00
Jaco Greeff
17df58b767
Add localUrl to serialization
2017-11-21 15:02:54 +01:00
Marek Kotewicz
2650154cd7
Merge pull request #7097 from paritytech/panic-payload-with-msg
...
WASM parse payload from panics
2017-11-21 15:01:32 +01:00
Sergey Pepyakin
3e4e00fc6a
spaces to tabs.
2017-11-21 15:39:34 +03:00
Marek Kotewicz
ab7307288b
Merge pull request #7096 from paritytech/td-nodef-features
...
Fix no-default-features.
2017-11-21 13:10:57 +01:00
Jaco Greeff
e67b05e632
Use query-string for search parsing
2017-11-21 12:31:34 +01:00
Robert Habermeier
d105bc272e
Merge pull request #7090 from paritytech/updated-secp256k1
...
updated eth-secp256k1
2017-11-20 22:36:30 +01:00
Svyatoslav Nikolsky
76e693240d
fix after merge
2017-11-20 20:02:03 +03:00
Svyatoslav Nikolsky
b5fad300ba
Merge branch 'master' into secretstore_kovan
2017-11-20 19:58:01 +03:00
Svyatoslav Nikolsky
af409eba07
SecretSTore: fix after merge from secretstore_kovan_1_8
2017-11-20 19:41:53 +03:00
Svyatoslav Nikolsky
32edb33608
removed some TODOs
2017-11-20 19:03:48 +03:00
Svyatoslav Nikolsky
01d6532875
SecretStore: fixed Ordering
2017-11-20 19:03:39 +03:00
Svyatoslav Nikolsky
3945a29ee6
SecretStore: mapping requests to KeyServer + requests retry
2017-11-20 19:03:31 +03:00
Svyatoslav Nikolsky
6618827d1a
SecretStore: cleaning up service contract listener
2017-11-20 19:03:22 +03:00
Svyatoslav Nikolsky
56875a83b3
SecretStore: Kovan flush2
2017-11-20 19:03:06 +03:00
Nikolay Volf
9798e3c45a
Update panic_payload.rs
2017-11-20 18:12:31 +03:00
Jaco Greeff
73dcde65aa
localUrl only from manifest
2017-11-20 15:11:12 +01:00
Jaco Greeff
ac722e9e50
Add appId as needed to local dapps
2017-11-20 13:37:52 +01:00
Jaco Greeff
d8e86cfe0a
Add to all icon_url places
2017-11-20 13:37:23 +01:00
Kirill Pimenov
8d06e19b70
Merge pull request #7099 from paritytech/a5-docs-gitemplates
...
Improve Github Issue Template
2017-11-20 13:25:18 +01:00
5chdn
3d68051a1f
Remove seperator that causes issue descriptions to become headlines sometimes
2017-11-20 13:23:44 +01:00
5chdn
5a20a826c4
Improve Github Issue Template: IT CROWD approved version.
2017-11-20 13:07:53 +01:00
Jaco Greeff
6fe361b382
Allow localUrl in manifest
2017-11-20 12:05:03 +01:00
Sergey Pepyakin
3d0616c1ae
Parse payload from panic
...
Impl payload
empty str is none
Update tests
Clean
Update wasm-tests
2017-11-20 13:09:57 +03:00
Tomasz Drwięga
4f5d73c945
Fix no-default-features.
2017-11-20 11:02:48 +01:00
debris
7dc7a673f0
updated eth-secp256k1
2017-11-18 22:14:57 +00:00
Robert Habermeier
4a6b103f0e
Merge pull request #7020 from paritytech/upload-crates
...
Changes necessary to upload crates to crates.io
2017-11-18 16:22:21 +01:00
Robert Habermeier
6fabb56104
fix tests on patricia-trie
2017-11-17 17:12:12 +01:00
Robert Habermeier
81212c5031
Merge branch 'master' into upload-crates
2017-11-17 16:42:41 +01:00
Marek Kotewicz
3c82a0d162
Merge pull request #7048 from paritytech/efyang
...
reopened 6860 - iterate over both buffered and unbuffered database entries
2017-11-16 17:49:02 +01:00
Svyatoslav Nikolsky
e16f6fb9d9
SecretStore: servers set change session api ( #6925 )
...
* SecretStore: first key versions flush
* SecretStore: key versions in encryption session
* SecretStore: flush key versions negotiation session
* SecretStore: connected key version negotiation session to cluster
* SecretStore: cluster sessions container refactoring
* SecretStore: flush
* SecretStore: flush key versions
* SecretStore: flush
* SecretStore: delegation proto
* SecretStore: decryption_session_is_delegated_when_node_does_not_have_key_share
* SecretStore: fixed version in decryption session
* SecretStore: signing_session_is_delegated_when_node_does_not_have_key_share
* SecretStore: started restoring admin sessions
* SecretStore: restoring admin sessions
* SecretStore: removed obsolete ShareRemove && ShareMove sessions
* SecretStore: ShareAdd math tests only require old_t+1 nodes
* SecretStore: ShareAdd revamp using new math backend
* SecretStore: do not include isolated nodes into consensus_group
* SecretStore: ServersSetChange + ShareAdd revamp
* removed debug printlns
* SecretStore: key version negotiation tests
* SecretStore: removed debug/merge artifacts
* SecretStore: fixed master node selection
* SecretStore: cleanup + tests + fixes
* SecretStore: uncommented tests
* SecretStore: cleaning up
* SecretStore: cleaning up + tests
* SecretStore: cleaning up
* SecretStore: cleaning up && tests
* SecretStore: fixing TODOs
* SecretStore: fixing TODOs + cleanup
* SecretStore: fixing TODOs
* SecretStore: nodes_add_to_the_node_with_obsolete_version
* SecretStore: nodes_add_fails_when_not_enough_share_owners_are_connected
* SecretStore: tests
* SecretStore: signing && delegation tests
* SecretStore: signing && decryption tests when some nodes are isolated
* SecretStore: sessions_are_removed_when_initialization_fails
* SecretStore: ceaning up
* SecretStore: removed obsolete comments
* SecretStore: signing_session_completes_if_node_does_not_have_a_share
* SecretStore: initial ServersSetChange API
* SecretStore: added secretstore_signServersSet RPC
* SecretStore: ChangeServersSet parse tests
* SecretStore: fixes after manual ServersSetChange tests
* lost file
* fixed network ports overlap in tests
* lost files
2017-11-16 17:34:23 +01:00
Wei Tang
b35cc3f716
Change reward calculation to only use divide once
2017-11-16 12:34:04 +08:00
Wei Tang
2ca57d7cdb
ECIP-1039: Monetary policy rounding specification
...
Fix potential rounding errors between geth and parity in the long-term future.
2017-11-16 12:25:05 +08:00
Marek Kotewicz
605cd5cd9f
Merge pull request #7006 from paritytech/no-uncles
...
Disable uncles by default
2017-11-15 23:51:49 +01:00
Marek Kotewicz
0230a44b15
Merge pull request #7040 from paritytech/squashed_network_error_chain
...
squashed ethcore-network changes which introduce error-chain
2017-11-15 18:18:25 +01:00
Marek Kotewicz
fdc045327a
Merge pull request #7057 from paritytech/dep_cleanup
...
removed redundant imports
2017-11-15 18:14:04 +01:00
GitLab Build Bot
a98652bef6
[ci skip] js-precompiled 20171115-103846
2017-11-15 10:50:45 +00:00
Afri Schoedon
95d3741e32
CHANGELOG for 1.7.8, 1.7.9, 1.8.2, and 1.8.3 ( #7055 )
...
* Update changelog for 1.7.8 stable
* Update changelog for 1.7.9 stable
* Improve wording in Changelog
* Update changelog for 1.8.2 beta
* Update changelog for 1.8.3 beta
2017-11-15 11:29:07 +01:00
Jaco Greeff
0bf48e94cc
Properly display Signer errors (Snackbar display popup) ( #7053 )
...
* Update to fixed @parity/ui (Errors component)
* Update ParityBar radius to align with Snackbar/Errors
* Update to latest @parity/ui
* Update dependencies @parity/signer-plugin-*
* Really pull in @parity/signer-plugin-* deps
2017-11-15 11:28:42 +01:00
Denis S. Soldatov aka General-Beck
cab5b09591
update icon for desktop
2017-11-14 22:45:14 +03:00
Denis S. Soldatov aka General-Beck
920e4ae1e2
Merge pull request #7059 from elopio/snap-desktopfile
...
Add the desktop file for the snap
2017-11-14 22:43:59 +03:00
Leo Arias
4dd3097493
Add the desktop file for the snap
...
Now that we have added plugs to allow accessing the display, the snap needs
a desktop file. And bonus point, it will appear on the menu when it's
installed, and once you make a stable relase, it will appear in the gnome
software center app! So, one-click install for parity :)
Closes : #7056
2017-11-14 19:30:35 +00:00
debris
a22c48b6b0
removed redundant imports
2017-11-14 17:47:41 +01:00
Marek Kotewicz
e6048e4a34
Merge pull request #7054 from paritytech/allocate_with_zeroes
...
Small performance gain in allocations
2017-11-14 15:48:11 +01:00
Marek Kotewicz
5a76d35ca8
Merge pull request #7051 from paritytech/td-jsonrpc-bump
...
Bump JSON-RPC version
2017-11-14 15:43:26 +01:00
Marek Kotewicz
dd7177dbb2
Merge pull request #7025 from paritytech/fix-nonce-reservation
...
Fix nonce reservation
2017-11-14 13:44:52 +01:00
Marek Kotewicz
cc184d5206
Merge pull request #7052 from paritytech/fix_ethstore_cli_output
...
Fixed ethstore-cli output
2017-11-14 13:44:11 +01:00
debris
4d7c31540e
static linking for snappy
2017-11-14 13:20:36 +01:00
Kirill Pimenov
6ddabc0f49
Small performance gain in allocations
...
As measured in
https://gist.github.com/kirushik/e0d93759b0cd102f814408595c20a9d0 ,
it's much faster not to iterate over zeroes, and just allocate a
contiguous array of zeroes directly.
2017-11-14 13:06:50 +01:00
debris
57720311ad
interleaved-ordered 0.1.1
2017-11-14 12:59:01 +01:00
Svyatoslav Nikolsky
7ed2fa8451
fixed ethstore-cli output
2017-11-14 14:33:05 +03:00
Svyatoslav Nikolsky
abfb9fccd3
SecretStore: Kovan integration initial commit
2017-11-14 14:26:31 +03:00
Tomasz Drwięga
f7fa9f6e9d
Drop jsonrpc_core::Error
2017-11-14 12:17:48 +01:00
Tomasz Drwięga
7e512c637a
Bump version.
2017-11-13 22:52:25 +01:00
GitLab Build Bot
361debd277
[ci skip] js-precompiled 20171113-174651
2017-11-13 18:03:28 +00:00
Jaco Greeff
2e6cf8e04b
Add mui for embed compilation ( #7049 )
2017-11-13 18:34:51 +01:00
Denis S. Soldatov aka General-Beck
dbd64f13f0
Merge pull request #6993 from elopio/snapcraft-df
...
Update the snap metadata to keep working strictly confined
2017-11-13 19:23:04 +03:00
Tomasz Drwięga
8b85f648ca
HashMap::retain
2017-11-13 17:09:30 +01:00
debris
b85369d6e8
Merge branch 'master' of https://github.com/efyang/parity into efyang
2017-11-13 17:06:44 +01:00
Jaco Greeff
0f92856c3f
Remove unused js packages (dapp cleanups) ( #7046 )
2017-11-13 16:51:57 +01:00
debris
3cf52dac59
use error-chain in ethcore-network
2017-11-13 16:48:58 +01:00
Jaco Greeff
b5fc6419e6
Gitlog location update ( #7042 )
...
* Move git logging to .git-release.log
* Update gitlog location
2017-11-13 15:16:35 +01:00
Jaco Greeff
a0090dd0d8
Move git logging to .git-release.log ( #7041 )
2017-11-13 14:51:36 +01:00
Jaco Greeff
af35fa1e33
Start from rust root in update step ( #7039 )
2017-11-13 14:20:43 +01:00
Jaco Greeff
3833f87256
Complete token merge, remove unused files ( #7037 )
...
* Either js or js-old to have changes to trigger push-cargo
* Complete merge of token changes (code move to js-shared)
* Update setting variable
2017-11-13 13:44:51 +01:00
Jaco Greeff
b9fbe52f32
Add missing script variable ( #7036 )
2017-11-13 13:11:32 +01:00
Amaury Martiny
93e93a50ce
Fix npm start script ( #7034 )
2017-11-13 12:46:11 +01:00
Jaco Greeff
073b4dacfb
Update executable flags on release scripts ( #7035 )
...
* Combine cargo updates into one
* Update log tag
* Update executable flags on release scripts
2017-11-13 12:36:48 +01:00
Jaco Greeff
0f2bfda830
Fix v1 precompiled ( #7033 )
...
* Combine cargo updates into one
* Update log tag
2017-11-13 11:52:34 +01:00
GitLab Build Bot
399043d37e
[ci skip] js-precompiled 20171113-100719
2017-11-13 10:19:26 +00:00
Jaco Greeff
1749dd8d6c
Push precompiled to correct branch (v1) ( #7031 )
2017-11-13 10:43:12 +01:00
GitLab Build Bot
6997ddda89
[ci skip] js-precompiled 20171113-091450
2017-11-13 09:27:11 +00:00
GitLab Build Bot
7fed79295d
[ci skip] js-precompiled 20171113-084613
2017-11-13 08:57:55 +00:00
Jaco Greeff
ce1609726f
Update v1 Wallet Dapp ( #6935 )
...
* Start removing duplicated functionality (v1 inside v2)
* Update compilation targets
* Update locks
* Fix js-old build
* Update with removed extra references
* Adapt dev.{parity,web3}.html for extra debug info
* Update dependencies
* Remove Tooltips
* Update dependencies
* Only inject window.ethereum once
* Fix versions to 2.0.x for @parity libraries
* Update to @parity/api 2.1.x
* Update for @parity/api 2.1.x
* Freeze signer plugin dependency hashes
* Fix lint
* Move local account handling from API
* Update for 2.2.x @parity/{shared,ui}
* Update API references for middleware
* Install updated dependencies
* Update for build
* Always do local builds for development
* Remove unused hasAccounts property
* Fix Windows build for js-old
* Adjust inclusing rules to be Windows friendly
* Explicitly add --config option to webpack
* Add process.env.EMBED flag for Windows compatability
* Revert embed flag
* Fix build
* Merge changes from beta
* Update packages after merge
* Update Accounts from beta
* Update with beta
* Remove upgrade check
* Fix CI build script execution
* Make rm -rf commands cross-platform
* Remove ability to deploy wallets (only watch)
* Update path references for js-old (Windows)
* Render local dapps first
* Cleanup dependencies
2017-11-13 09:31:08 +01:00
Sergey Pepyakin
bcdfc50a0b
pwasm-std update ( #7018 )
2017-11-13 00:21:15 +03:00
Tomasz Drwięga
72907da2ae
Garbage collect hashmap entries.
2017-11-12 12:50:13 +01:00
Robert Habermeier
c4466f450b
update patricia-trie cargo.toml
2017-11-10 20:26:19 +01:00
Robert Habermeier
cffbf3cab1
update rlp
2017-11-10 20:22:45 +01:00
Robert Habermeier
75cfab8559
update memorydb
2017-11-10 20:17:41 +01:00
Robert Habermeier
ec5519ccd1
rename hash crate to keccak-hash
2017-11-10 20:08:28 +01:00
Robert Habermeier
5c8f39c3bd
update ethcore-bigint version
2017-11-10 18:50:45 +01:00
Robert Habermeier
5423518e1e
update bigint version number
2017-11-10 18:43:18 +01:00
Robert Habermeier
2288bcd1b4
Merge branch 'master' of github.com:paritytech/parity into upload-crates
2017-11-10 18:42:18 +01:00
Robert Habermeier
be092e7c09
prepare cargo configuration for upload of crates
2017-11-10 18:31:31 +01:00
Nicolas Gotchac
8c6b89df72
Merge branch 'master' into fix-nonce-reservation
2017-11-10 17:36:12 +01:00
Nicolas Gotchac
15c97336a4
Create hashmap in RPC Apis
2017-11-10 17:11:04 +01:00
Alexey
df49b4b065
Merge pull request #6967 from paritytech/wasm-elog
...
Events in WASM runtime
2017-11-10 18:03:32 +03:00
Marek Kotewicz
e13204c5c8
Merge pull request #6970 from paritytech/validate_node_url
...
Adds validate_node_url() and refactors boot node check (#6907 )
2017-11-10 15:39:30 +01:00
Marek Kotewicz
dd87b3014b
Merge pull request #7016 from paritytech/td-glue
...
Fix windows build (with ui rebuild)
2017-11-10 15:32:48 +01:00
Tomasz Drwięga
dd35c9b1f7
Bump parity-dapps-glue.
2017-11-10 10:58:56 +01:00
Tomasz Drwięga
f0fc8ed5f8
Rimraf.
2017-11-10 10:50:23 +01:00
Tomasz Drwięga
6ab03412ea
Fix js-glue.
2017-11-10 10:23:35 +01:00
keorn
261c0d5368
no default uncles
2017-11-09 23:56:02 +00:00
Office-Julia
73d195ab79
Update CHANGELOG-1.7.md
2017-11-10 03:13:09 +07:00
Office-Julia
5977e36687
Update CHANGELOG-1.7.md
2017-11-10 03:05:07 +07:00
Nicolas Gotchac
4c8780f188
Use nonce reservation per address
2017-11-09 19:49:34 +01:00
Robert Habermeier
ea6e79c9c2
test framework and basic test for whisper
2017-11-09 19:20:32 +01:00
Kirill Pimenov
394d6e7259
Merge pull request #7004 from paritytech/cli-arguments-backwards-compatible
...
Make CLI arguments parsing more backwards compatible
2017-11-09 14:42:17 +01:00
Tomasz Drwięga
aaeb5d4cd7
Fixes for parity-extension ( #6990 )
...
* Fix extension support.
* Fix environment variables on windows.
* Fix package-lock.json
* Fix build issues.
2017-11-09 13:20:26 +01:00
Axel Chalon
83e2fa3112
Make CLI arguments parsing more backwards compatible
2017-11-08 12:33:56 +01:00
Robert Habermeier
b3795ac0b5
Merge pull request #6992 from paritytech/td-bigint
...
Update ethcore-bigint
2017-11-07 11:24:05 -06:00
Robert Habermeier
d701ed7262
Merge pull request #6874 from paritytech/light-local-tx
...
Get local transactions by hash in the light client
2017-11-07 11:23:40 -06:00
Robert Habermeier
099303a342
Merge pull request #6875 from paritytech/warn-blacklisted
...
warn when blacklisted account present in store
2017-11-07 11:23:20 -06:00
Robert Habermeier
acdec22d58
Merge branch 'master' into warn-blacklisted
2017-11-07 16:56:57 +01:00
Robert Habermeier
4a07010539
Merge branch 'master' into light-local-tx
2017-11-07 16:56:28 +01:00
Arkadiy Paronyan
85465fc0b1
Skip nonce check for gas estimation ( #6997 )
2017-11-07 09:21:30 +01:00
Tomasz Drwięga
bd04517477
Update.
2017-11-06 16:31:15 +01:00
Leo Arias
6a0e8a557c
Update the snap metadata to keep working strictly confined
2017-11-06 14:03:45 +00:00
Tomasz Drwięga
2557f282a4
Add std feature.
2017-11-06 12:52:38 +01:00
Tomasz Drwięga
0ed1e77996
Add version to plain-hasher.
2017-11-06 12:03:59 +01:00
Tomasz Drwięga
d7e4dda3e1
Update ethcore-bigint.
2017-11-06 11:58:17 +01:00
Dmitry Kashitsyn
8fe40a64d0
Fixes test
2017-11-06 13:51:26 +07:00
Dmitry Kashitsyn
851401dded
Removes obsolete is_valid_node_url()
2017-11-06 13:01:37 +07:00
Dmitry Kashitsyn
1516fc1c57
Adds validate_node_url() and refactors boot node check ( #6907 )
2017-11-06 12:46:11 +07:00
NikVolf
bed82e5cc0
elog (events) for wasm runtime
2017-11-05 18:54:35 +03:00
Tomasz Drwięga
ffee6aacff
Creating pending block with all transactions from the queue ( #6942 )
...
* Allow to include all queue transactions in pending block.
* Fix tests.
2017-11-03 15:20:20 +01:00
Dmitry Kashitsyn
7eacef99b9
Removes MAX_TX_TO_IMPORT from ChainSync ( #6976 )
2017-11-03 13:09:59 +01:00
Svyatoslav Nikolsky
7703cd226b
SecretStore: versioned keys ( #6910 )
...
* SecretStore: first key versions flush
* SecretStore: key versions in encryption session
* SecretStore: flush key versions negotiation session
* SecretStore: connected key version negotiation session to cluster
* SecretStore: cluster sessions container refactoring
* SecretStore: flush
* SecretStore: flush key versions
* SecretStore: flush
* SecretStore: delegation proto
* SecretStore: decryption_session_is_delegated_when_node_does_not_have_key_share
* SecretStore: fixed version in decryption session
* SecretStore: signing_session_is_delegated_when_node_does_not_have_key_share
* SecretStore: started restoring admin sessions
* SecretStore: restoring admin sessions
* SecretStore: removed obsolete ShareRemove && ShareMove sessions
* SecretStore: ShareAdd math tests only require old_t+1 nodes
* SecretStore: ShareAdd revamp using new math backend
* SecretStore: do not include isolated nodes into consensus_group
* SecretStore: ServersSetChange + ShareAdd revamp
* removed debug printlns
* SecretStore: key version negotiation tests
* SecretStore: removed debug/merge artifacts
* SecretStore: fixed master node selection
* SecretStore: cleanup + tests + fixes
* SecretStore: uncommented tests
* SecretStore: cleaning up
* SecretStore: cleaning up + tests
* SecretStore: cleaning up
* SecretStore: cleaning up && tests
* SecretStore: fixing TODOs
* SecretStore: fixing TODOs + cleanup
* SecretStore: fixing TODOs
* SecretStore: nodes_add_to_the_node_with_obsolete_version
* SecretStore: nodes_add_fails_when_not_enough_share_owners_are_connected
* SecretStore: tests
* SecretStore: signing && delegation tests
* SecretStore: signing && decryption tests when some nodes are isolated
* SecretStore: sessions_are_removed_when_initialization_fails
* SecretStore: ceaning up
* SecretStore: removed obsolete comments
* SecretStore: signing_session_completes_if_node_does_not_have_a_share
2017-11-02 15:33:11 +01:00
Dmitry Kashitsyn
713bba00ac
Removes FUTURE_QUEUE_LIMITS_SHIFT ( #6962 )
2017-11-02 15:06:17 +01:00
Arkadiy Paronyan
60bb2d9c74
Set zero nonce and gasprice for calls by default ( #6954 )
2017-11-02 12:50:08 +01:00
Nikolay Volf
f72858ee0a
Add hint in ActionParams for splitting code/data ( #6957 )
...
* Action params and embedded params handling
* fix namespaces
2017-11-02 12:49:57 +01:00
Tomasz Drwięga
0a69d5ac4c
Return decoded seal fields. ( #6932 )
2017-11-01 11:29:03 +01:00
Tomasz Drwięga
ec44e3d265
Fix serialization of status in transaction receipts. ( #6926 )
2017-11-01 11:25:10 +01:00
Tomasz Drwięga
b861ad37a4
Reserve nonces for signing ( #6834 )
...
* Nonce future - reserve and dispatch
* Single thread nonce tests
* Track status of reserved nonces.
* Initialization of nonce reservations.
* Prospective Signer
* Fix cli tests.
2017-11-01 11:23:18 +01:00
Kirill Pimenov
4b3c26f991
Merge pull request #6921 from paritytech/windows-fixes
...
Windows fixes
2017-11-01 11:06:03 +01:00
GitLab Build Bot
d525d1e8a7
[ci skip] js-precompiled 20171030-184948
2017-10-30 19:03:18 +00:00
Jaco Greeff
152e56c5d9
Don't add {css,js}.map from dapps ( #6931 )
2017-10-30 14:36:37 +01:00
arkpar
38652bd296
Restored rust-toolchain
2017-10-30 08:05:44 +01:00
Marek Kotewicz
39e27076ad
Merge pull request #6842 from paritytech/td-evm-json
...
Fix JSON tracing for sub-calls.
2017-10-29 21:47:14 -07:00
arkpar
4c101c974d
Tray app fixes
2017-10-29 14:43:44 +01:00
arkpar
719f3788e6
Installer fixes
2017-10-29 14:42:37 +01:00
arkpar
4b6036fa08
Updated icon
2017-10-29 14:42:37 +01:00
arkpar
4b56f2530d
Don't create IPC dir on windows
2017-10-29 14:42:37 +01:00
efyang
9b4db8b4f0
Fix iterator issues
2017-10-28 16:59:00 -05:00
GitLab Build Bot
44511f9254
[ci skip] js-precompiled 20171026-173947
2017-10-26 17:51:21 +00:00
GitLab Build Bot
0abc2b1374
[ci skip] js-precompiled 20171025-172424
2017-10-25 17:37:10 +00:00
Jaco Greeff
f282823e78
Shell updates (bonds, updated Dapps) ( #6897 )
...
* Remove stage-0
* Re-add stage-0 for `export default from './xyz';`
* Add background loading image
* Add window.isParity for parity-specific actions
* inject bonds (temporary)
* Remove loading text overlay
* Remove background around logo
* Remove debug log
* Fix account selection (correct component used)
* Update with changed dapp dependencies
* Add oo7 to list of babel node_module targets
* injectObjects -> onDappLoad
2017-10-25 16:54:41 +02:00
Nicolas Ochem
542cee9ace
fix #6228 : do not display eth price in cli for etc ( #6877 )
...
* fix #6228 : do not display eth price in cli for etc
Current behaviour:
When the client is started with defaults, the miner's gas calibrator
periodically queries the price of ether in usd and uses it to adjust
the wei_per_gas variable, displaying an info message in the cli each
time calibration happens. The info message mentions the price of ETH.
When started with the --min-gas-price option, the calibrator is inactive
and the price is not displayed.
Problem:
When running on an alternate chain such as ethereum classic, the info
message mentioning the ETH price is present, unless the --min-gas-price
option is used.
Solution:
if chain != foundation and --min-gas-price is not set,
don't use GasPricerConfig::Calibrated as default but rather fix
the minimum gas price to zero.
* self.chain() returns ChainType.
* match chain based on SpecType
2017-10-25 11:42:48 +02:00
Nicolas Ochem
54b14001fa
fix mining help ( #6885 )
...
was
--min-gas-price=[STRING]
Minimum amount of Wei per GAS to be paid for a
transaction to be accepted for mining. Overrides
--basic-tx-usd.
Issue: --basic-tx-usd does not exist. Author probably meant
--usd-per-tx.
New:
--min-gas-price=[STRING]
Minimum amount of Wei per GAS to be paid for a
transaction to be accepted for mining. Overrides
--usd-per-tx.
2017-10-25 11:38:47 +02:00
Tomasz Drwięga
8dfdebc2a2
Refactor static context check in CREATE. ( #6886 )
...
* Refactor static context check in CREATE.
* Fix wasm.
2017-10-25 11:27:18 +02:00
GitLab Build Bot
b50ed887c7
[ci skip] js-precompiled 20171024-132828
2017-10-24 13:48:32 +00:00
David Dorgan
bdf1e6afcc
Revert "Sync parity-ewf with parity"
...
This reverts commit f7ba063b22 .
2017-10-24 13:31:58 +01:00
David Dorgan
f7ba063b22
Sync parity-ewf with parity
2017-10-24 12:31:50 +01:00
Tomasz Drwięga
dfccc3fb04
Allow force sealing and reseal=0 for non-dev chains. ( #6878 )
2017-10-24 12:25:34 +02:00
Tomasz Drwięga
b98150526c
Fix serialization of non-localized transactions ( #6868 )
...
* Fix serialization of non-localized transactions.
* Return proper SignedTransactions representation.
2017-10-24 12:13:00 +02:00
Marek Kotewicz
d68b3f131d
updated ntp to version 0.3 ( #6854 )
2017-10-24 12:12:15 +02:00
Afri Schoedon
f68cb37efb
Align README with 1.8 and prepare CHANGELOG with 1.8.1 ( #6833 )
...
* Update README.md for 1.8.0
* Update CHANGELOG.md for 1.8.1
* Clarify note on trezor wallets
* Update CHANGELOG.md for 1.8.1
* Update CHANGELOG.md for 1.8.1
* Update CHANGELOG.md for 1.8.1
* Fix Typos.
2017-10-24 12:01:35 +02:00
Tomasz Drwięga
025244e8b2
Return error on timed unlock attempt. ( #6777 )
2017-10-24 11:57:55 +02:00
Tomasz Drwięga
1253a5c577
Merge branch 'master' into td-evm-json
2017-10-24 09:16:51 +02:00
Robert Habermeier
dd13526f6c
warn when blacklisted account present in store
2017-10-24 09:04:28 +02:00
Robert Habermeier
965dff3d32
light: get local transactions by hash
2017-10-24 07:30:53 +02:00
Marek Kotewicz
3e5d9b92c1
Merge pull request #6866 from paritytech/td-fix-dapps-tests
...
Fix dapps tests in master
2017-10-24 11:31:14 +07:00
Tomasz Drwięga
dd21e61371
Fix ws tests.
2017-10-23 23:52:50 +02:00
Tomasz Drwięga
42e23a9633
Return proper SignedTransactions representation.
2017-10-23 16:45:06 +02:00
Tomasz Drwięga
4ba2587226
Fix serialization of non-localized transactions.
2017-10-23 14:46:36 +02:00
Tomasz Drwięga
5f5476ceb8
Fix parsing of non-utf8 characters.
2017-10-23 14:02:53 +02:00
efyang
56b6adec68
Iterate over both buffered and unbuffered database entries
2017-10-22 20:58:06 -05:00
Arkadiy Paronyan
097815cb71
Ethstore optimizations ( #6827 )
2017-10-20 20:20:41 +02:00
Tomasz Drwięga
1177c39772
Merge branch 'master' into td-evm-json
2017-10-20 16:06:44 +02:00
Tomasz Drwięga
2d222a5920
Capture traces and write some tests.
2017-10-20 16:06:36 +02:00
Tomasz Drwięga
4ac406da6b
Merge branch 'master' into td-evm-json
2017-10-20 13:36:45 +02:00
GitLab Build Bot
f4c9524eb4
[ci skip] js-precompiled 20171020-105109
2017-10-20 11:04:41 +00:00
ia
bbe9d73e9a
Add ECIP1017 to Morden config ( #6810 )
...
* Add ECIP1017 setting to Morden config
* Convert spaces to tabs
* Update Morden bootnodes to match Geth
2017-10-20 12:37:37 +02:00
Jaco Greeff
9ca294740d
Remove all package publishing to npm ( #6838 )
2017-10-20 12:16:26 +02:00
Marek Kotewicz
9228ce4bae
util crates use tempdir crate instead of devtools to create temp path ( #6807 )
...
* use tempdir instead of devtools in kvdb-rocksdb
* use tempdir instead of devtools in migration
* use tempdir instead of devtools in ethcore-network
* fixed wrong merge
2017-10-20 12:11:34 +02:00
Jaco Greeff
7b14907f7f
Trigger build ( #6836 )
2017-10-20 11:51:37 +02:00
Tomasz Drwięga
aa929fe6ae
Clean-up scripts. ( #6832 )
2017-10-20 11:41:11 +02:00
Arkadiy Paronyan
3a01068747
Merge pull request #6829 from paritytech/tweak-snapshot-sync
...
Tweaked snapshot sync threshold
2017-10-20 08:18:25 +02:00
arkpar
3ea9d80859
Tweaked snapshot sync threshold
2017-10-19 23:11:38 +02:00
Arkadiy Paronyan
41eabfcc1e
Merge pull request #6819 from paritytech/td-ui-2
...
Integrate UI 2
2017-10-19 22:09:13 +02:00
Tomasz Drwięga
bfcf4c4281
Merge branch 'master' into td-ui-2
2017-10-19 15:46:15 +02:00
GitLab Build Bot
58db82dbe2
[ci skip] js-precompiled 20171019-130316
2017-10-19 13:08:11 +00:00
Arkadiy Paronyan
b4c4fddb10
devp2p snappy compression ( #6683 )
2017-10-19 14:41:10 +02:00
Jaco Greeff
fdbf6bf7d6
Refresh cached tokens based on registry info & random balances ( #6818 )
...
* Refresh cached tokens based on registry info & random balances
* Don't display errored token images
2017-10-19 14:18:21 +02:00
Tomasz Drwięga
490f771faf
Fix tests.
2017-10-19 12:02:13 +02:00
Fredrik Harrysson
c1288810c6
Change keypath derivation logic ( #6815 )
...
While the standard defined by Trezor as the default derivation path here
https://blog.trezor.io/trezor-integration-with-myetherwallet-3e217a652e08
says that it should be `m/44'/60'/0`, in practice they don't have an
implementation of a wallet for Ethereum themselves and refer customers
to MEW.
MEW has a custom implementation of the path derivation logic that allows them to
generate multiple addresses by essentially adding `/0`, `/1` etc to the path.
In my initial implementation of Trezor I didn't take this into
consideration unfortunately and just used the keypath that Trezor
themselves recommended. However, given that it's seemingly standard
practice to append `/0` for a "sub-address" (and this is what we've done
for Ledger as well) it seems like a mistake on my part to not take that
into consideration.
Unfortunately, anyone who has used their Trezor device with Parity
previously would now see a different address when they connect the
Trezor device the next time. The only way they would have to access the
old address is to use an old version, or by going through MEW and
selecting the Ledger keypath.
Also see #6811
2017-10-19 11:47:53 +02:00
Tomasz Drwięga
195305ce2e
Merge branch 'master' into td-ui-2
2017-10-18 16:45:37 +02:00
Tomasz Drwięga
da6bd4168b
Update build scripts.
2017-10-18 16:38:11 +02:00
Tomasz Drwięga
48ac6cbcf8
Enable access to WebSockets for dapps.
2017-10-18 16:28:45 +02:00
Marek Kotewicz
5281e09828
Merge pull request #6801 from paritytech/refactoring/journal-6693
...
Refactors journaldb as a separate crate
2017-10-18 16:10:28 +02:00
GitLab Build Bot
b1df272f4c
[ci skip] js-precompiled 20171018-123105
2017-10-18 12:35:51 +00:00
Tomasz Drwięga
51caf97705
Trigger UI build. ( #6817 )
2017-10-18 14:19:45 +02:00
Tomasz Drwięga
2472a2be0c
Merge branch 'ui-2' into td-ui-2
2017-10-18 14:13:08 +02:00
Jaco Greeff
9e04be754c
Update dependencies (should fix account)
2017-10-18 11:51:29 +02:00
GitLab Build Bot
62fa1ed524
[ci skip] js-precompiled 20171017-174801
2017-10-17 17:53:06 +00:00
Tomasz Drwięga
304b067417
Support both versions.
2017-10-17 18:10:59 +02:00
Jaco Greeff
fc2b58a4eb
Updated dependencies
2017-10-17 18:02:17 +02:00
Dmitry Kashitsyn
153b8572dd
Fixes tests
2017-10-17 22:24:47 +07:00
Arkadiy Paronyan
a2fe7def1f
Bumped version ( #6809 )
2017-10-17 16:48:38 +02:00
Kirill Pimenov
540c93955e
Merge pull request #6808 from paritytech/td-rpc-warnings
...
Fix RPC compilation warnings.
2017-10-17 16:15:32 +02:00
Tomasz Drwięga
0f8fb62581
Integrate old UI.
2017-10-17 16:09:43 +02:00
Tomasz Drwięga
1d9542fe88
Fix RPC compilation warnings.
2017-10-17 15:41:32 +02:00
Tomasz Drwięga
2d10cd0ecc
Fixing JSON WiP. Refactor & Write tests.
2017-10-17 14:54:56 +02:00
Kirill Pimenov
86c2633280
Migrate to Futures in SigningQueue ( #6689 )
...
* oneshot channels instead of custom promises
* Future instead of handle_dispatch
* Even less copying
* Those explicit waits were a mistake, thanks, @tomusdrw
* No more unsafe polling
* Test for the new `is_done()` method
* Mark Futures as `#[must_use]`
* Solve most compilation warnings
* `try_ready!` is more ideomatic
* Turn spaces into tabs
* Documentation and visibility improvements
* Minor code style improvements
* Make Futures run on an explisit reactor
* Another round of code style issues
* Simplify ConfirmationReceiver type
* Flatten ConfirmationOutcome into a plain Result type
* Get rid of a separate `pending` set, it was a stupid idea
* Clarify `add_request` docs
* No need to reduce the scope of the mutex here
2017-10-17 14:50:53 +02:00
Jaco Greeff
9a62119a82
Updated dependencies
2017-10-17 12:41:31 +02:00
debris
0e912bca5b
bring back accidently removed whitespace
2017-10-17 10:44:05 +02:00
debris
607cc6c782
fixed compiling util tests
2017-10-17 10:40:45 +02:00
Jaco Greeff
d852e6b063
Merge branch 'master' into ui-2
...
# Conflicts:
# js/src/views/Signer/components/SignRequest/signRequest.js
2017-10-17 09:55:13 +02:00
Jaco Greeff
9c5b96ccbe
Updated dependencies
2017-10-17 09:09:54 +02:00
Dmitry Kashitsyn
7fe7b6d9a4
Fixes import in test
2017-10-17 12:12:46 +07:00
Dmitry Kashitsyn
f9e588dd7b
Refactors parity/parity to use journaldb crate ( #6693 )
2017-10-17 11:46:54 +07:00
Dmitry Kashitsyn
c0fc83988f
Refactors ethcore to use journaldb crate ( #6693 )
2017-10-17 11:46:07 +07:00
Dmitry Kashitsyn
e2b96e1fe0
Moves journaldb sources to a separate crate ( #6693 )
2017-10-17 11:44:52 +07:00
Marek Kotewicz
98d0ef3fff
Merge pull request #6795 from paritytech/ipc_cleanup
...
remove internal ipc
2017-10-16 23:22:47 +02:00
debris
3830f9b464
fixed failing test
2017-10-16 22:12:17 +02:00
debris
95f0384510
Merge branch 'master' into ipc_cleanup
2017-10-16 18:19:41 +02:00
Marek Kotewicz
bb1be15dc4
Merge pull request #6792 from paritytech/kvdb_error
...
consistent KeyValueDB errors
2017-10-16 18:19:18 +02:00
debris
16d84f8ecf
finished removing ipc
2017-10-16 18:18:43 +02:00
Jaco Greeff
a76f768077
Updated dependencies
2017-10-16 18:06:40 +02:00
debris
fa019bd03e
remove ipc codegen from ethcore
2017-10-16 17:50:25 +02:00
debris
6f914d1851
remove ipc codegen from stratum
2017-10-16 17:32:15 +02:00
debris
f1c50e5648
remove ipc codegen from updater
2017-10-16 17:28:59 +02:00
debris
c83e9d0f1b
remove ipc codegen from secretstore
2017-10-16 17:12:02 +02:00
Jaco Greeff
9e4c1fe6af
Update warning layout
2017-10-16 15:51:55 +02:00
Jaco Greeff
de6066d6b0
Add babel-polyfill entry
2017-10-16 15:45:30 +02:00
Jaco Greeff
b49d7ee29c
Rebuild after master merge
2017-10-16 15:20:30 +02:00
debris
7661e93a56
fixed secret_store conversion from kvdb error
2017-10-16 14:55:11 +02:00
Jaco Greeff
8453dda7ef
Merge branch 'master' into ui-2
...
# Conflicts:
# js/package-lock.json
# js/package.json
# js/src/api/api.js
# js/src/api/local/accounts/accounts.js
# js/src/api/local/localAccountsMiddleware.js
# js/src/api/local/transactions.js
# js/src/api/pubsub/signer/signer.js
# js/src/api/subscriptions/signer.js
# js/src/api/transport/jsonRpcBase.js
# js/src/api/transport/middleware.js
# js/src/api/util/format.js
# js/src/api/util/format.spec.js
# js/src/contracts/abi/index.js
# js/src/contracts/badgereg.js
# js/src/dapps/tokenreg/Application/application.css
# js/src/dapps/tokenreg/Application/application.js
# js/src/modals/CreateWallet/WalletDetails/walletDetails.js
# js/src/modals/CreateWallet/WalletDetails/walletDetails.spec.js
# js/src/modals/CreateWallet/createWalletStore.js
# js/src/modals/DeployContract/ParametersStep/parametersStep.js
# js/src/modals/DeployContract/deployContract.js
# js/src/modals/ExecuteContract/DetailsStep/detailsStep.js
# js/src/modals/WalletSettings/walletSettings.js
# js/src/redux/providers/certifications/actions.js
# js/src/redux/providers/certifications/middleware.js
# js/src/redux/providers/certifications/reducer.js
# js/src/redux/providers/requestsActions.js
# js/src/redux/providers/tokensActions.js
# js/src/ui/AccountCard/accountCard.css
# js/src/ui/Balance/balance.js
# js/src/ui/Balance/balance.spec.js
# js/src/ui/DappCard/dappCard.js
# js/src/ui/Form/AddressSelect/addressSelect.js
# js/src/ui/Form/AddressSelect/addressSelectStore.js
# js/src/ui/Form/InputAddressSelect/inputAddressSelect.js
# js/src/ui/Form/TypedInput/typedInput.js
# js/src/ui/IdentityIcon/identityIcon.js
# js/src/ui/MethodDecoding/tokenValue.js
# js/src/util/tx.js
# js/src/util/wallets.js
# js/src/util/wallets/consensys-wallet.js
# js/src/util/wallets/foundation-wallet.js
# js/src/views/Account/account.js
# js/src/views/Accounts/List/list.js
# js/src/views/Contract/Queries/inputQuery.js
# js/src/views/Contract/Queries/queries.js
# js/src/views/Contract/contract.js
# js/src/views/Signer/components/SignRequest/signRequest.css
# js/src/views/Signer/components/SignRequest/signRequest.js
# js/src/views/Signer/components/SignRequest/signRequest.spec.js
2017-10-16 12:41:41 +02:00
Arkadiy Paronyan
5b29b6d064
Squash remaining warnings ( #6789 )
...
* Fixed comment warnings
* Fixed remaining warnings
2017-10-16 12:31:52 +02:00
debris
8ecdab68c2
add missing space to TrieError description
2017-10-16 12:17:06 +02:00
debris
5e61f3493e
require stable error-chain
2017-10-16 12:15:19 +02:00
debris
6dc50d01b5
KeyValueDB trait uses errors instead of strings
2017-10-16 12:11:35 +02:00
Marek Kotewicz
44db0c55c5
Merge pull request #6720 from paritytech/kvdb_split
...
separated kvdb into 3 crates: kvdb, kvdb-memorydb && kvdb-rocksdb
2017-10-16 10:57:27 +02:00
Afri Schoedon
774598974e
Forward-port #6754 #6755 ( #6785 )
2017-10-16 10:56:23 +02:00
Marek Kotewicz
aa4bc50c6b
removed duplicated versions of clippy ( #6776 )
2017-10-16 10:22:02 +02:00
Marek Kotewicz
8365f4d80e
updated ethabi to version 4.0 ( #6742 )
...
* updated ethabi to version 4.0
* ethabi 4.0.1
2017-10-16 10:21:35 +02:00
Marek Kotewicz
9fa639ede9
updated rpc_cli and parity to rpassword 1.0 ( #6774 )
2017-10-16 10:20:55 +02:00
Afri Schoedon
b63c3a66ca
Fix sign data typo, ref #6737 ( #6750 )
2017-10-16 10:08:36 +02:00
debris
fbad6b5514
removed redundant mut from kvdb-memorydb
2017-10-16 10:02:26 +02:00
debris
2ce0eae406
Merge branch 'master' into kvdb_split
2017-10-16 10:01:12 +02:00
Marek Kotewicz
d1c9acf439
Merge pull request #6772 from paritytech/refactoring/cache-6693
...
Refactoring/cache 6693
2017-10-16 09:58:48 +02:00
Afri Schoedon
832879e5c8
Fix CHANGLOG for 1.8.0 ( #6751 )
...
* Fix CHANGLOG for 1.8.0
* Update changelog for 1.8.0
* Add changelog for 1.7.7
2017-10-16 09:35:02 +02:00
Dmitry Kashitsyn
92a9fd3359
Uses dash instead of underscore in crate name
2017-10-16 11:05:54 +07:00
Dmitry Kashitsyn
b03117b262
Removes redundant mut in service.rs.in ( #6775 )
2017-10-15 17:41:40 +02:00
Dmitry Kashitsyn
e7690ab658
Removes redundant dependencies ( #6693 )
2017-10-15 21:47:06 +07:00
Dmitry Kashitsyn
4df541e47a
Refactors references to MemoryLruCache in ethcore ( #6693 )
2017-10-15 21:47:06 +07:00
Dmitry Kashitsyn
51b61ccdbf
Extracts MemoryLruCache to a separate crate ( #6693 )
2017-10-15 21:47:06 +07:00
debris
db3ff67182
Merge branch 'master' into kvdb_split
2017-10-15 16:40:20 +02:00
Marek Kotewicz
82c8dccddf
Merge pull request #6773 from paritytech/refactoring/redundant-mut
...
Remove redundant `mut`
2017-10-15 16:38:26 +02:00
debris
fa4e5c98d0
docs
2017-10-15 16:18:45 +02:00
debris
616cafb04a
renamed kvdb_memorydb::in_memory -> kvdb_memorydb::create
2017-10-15 16:17:15 +02:00
debris
d88ec35a6a
Merge branch 'master' into kvdb_split
2017-10-15 15:55:44 +02:00
Dmitry Kashitsyn
96b4467f86
Removes redundant mut in util
2017-10-15 20:11:34 +07:00
Dmitry Kashitsyn
74876fd410
Removes redundant mut in sync
2017-10-15 20:11:20 +07:00
Dmitry Kashitsyn
dab40e832c
Removes redundant mut in rpc
2017-10-15 20:11:07 +07:00
Dmitry Kashitsyn
b49baed696
Removes redundant mut in hw
2017-10-15 20:10:59 +07:00
Dmitry Kashitsyn
3df67b376b
Removes redundant mut in ethcore
2017-10-15 20:10:20 +07:00
Arkadiy Paronyan
b0c15497e1
Fixed kovan chain validation ( #6758 )
...
* Fixed kovan chain validation
* Fork detection
* Fixed typo
2017-10-14 21:59:26 +02:00
Marek Kotewicz
190c1dcede
removed redundant evm deps ( #6757 )
2017-10-14 19:29:09 +02:00
Afri Schoedon
1294572907
Update CHANGELOG for 1.7.4, 1.7.5, and 1.8.0 ( #6716 )
...
* Update CHANGELOG for 1.7.4
* Update CHANGELOG for 1.7.5
* Update CHANGELOG for 1.7.5
* Move stable changelog to docs/
* Prepare CHANGELOG for 1.8.0
* Update CHANGELOG for 1.8.0
* Add changelog for 1.7.6
* Update CHANGELOG for 1.8.0
* Describe CHANGELOG for 1.8.0
2017-10-13 17:30:51 +02:00
debris
da8bf76c15
util tests use kvdb_memorydb instead of kvdb_rocksdb, closes #6739
2017-10-13 17:12:17 +02:00
debris
b277c3810f
Merge branch 'master' into kvdb_split
2017-10-13 16:27:12 +02:00
Arkadiy Paronyan
691e93834c
Fixed modexp gas calculation overflow ( #6741 )
2017-10-13 16:06:53 +02:00
Marek Kotewicz
fcd81a7b86
Merge pull request #6733 from paritytech/cc1.0
...
use cc 1.0 instead of gcc
2017-10-13 14:30:03 +02:00
Axel Chalon
d77dabadbb
CLI: Reject invalid argument values rather than ignore them ( #6723 )
...
* CLI: Reject invalid argument values rather than ignore them
* Fix grumbles
2017-10-13 12:20:57 +02:00
debris
5c220ab64b
Merge branch 'master' into kvdb_split
2017-10-13 12:18:49 +02:00
GitLab Build Bot
ba6594e30a
[ci skip] js-precompiled 20171013-002644
2017-10-13 00:31:48 +00:00
Arkadiy Paronyan
f3ea2f354e
v1.9.0 ( #6727 )
2017-10-12 23:44:02 +02:00
Robert Habermeier
a2d9b6f9ce
remove RPC parameter leniency now that mist formats correctly ( #6651 )
2017-10-12 23:35:52 +02:00
debris
8c1e402e02
use cc 1.0 instead of gcc
2017-10-12 23:23:50 +02:00
GitLab Build Bot
df39f5e7fc
[ci skip] js-precompiled 20171012-210804
2017-10-12 21:19:11 +00:00
Nicolas Gotchac
78146e903d
Fix badges not showing up ( #6730 )
...
* Fix badges not showing up
* Always fetch meta data first [badges]
2017-10-12 22:17:59 +02:00
GitLab Build Bot
7472bc3570
[ci skip] js-precompiled 20171012-181858
2017-10-12 18:24:04 +00:00
Nicolas Gotchac
3e7b775961
Fix tokens and badges ( #6725 )
...
* Update new token fetching
* Working Certifications Monitoring
* Update on Certification / Revoke
* Fix none-fetched tokens value display
* Fix tests
2017-10-12 20:09:44 +02:00
Jaco Greeff
edbbd42d80
Check vouch status on appId in addition to contentHash ( #6719 )
...
* Check vouch status on appId in addition to contentHash
* Simplify var expansion
2017-10-12 19:28:56 +02:00
debris
f36b4e0fca
fixed wrong kvdb import in json_tests
2017-10-12 17:05:32 +02:00
Marek Kotewicz
e51e54eeeb
Merge pull request #6694 from paritytech/no-sleep
...
Prevent going offline when restoring or taking a snapshot
2017-10-12 15:54:29 +02:00
Marek Kotewicz
fee68a5331
Merge pull request #6711 from paritytech/cli-unknownarguments-6485
...
Graceful exit when invalid CLI flags are passed (#6485 )
2017-10-12 15:52:22 +02:00
Marek Kotewicz
761ba164ee
Merge pull request #6718 from paritytech/returndata-bounds-fix
...
Fixed RETURNDATA out of bounds check
2017-10-12 15:46:10 +02:00
debris
c05fd9607c
fixed kvdb-memorydb && kvdb-rocksdb authors
2017-10-12 15:38:38 +02:00
debris
eb526b7769
separated kvdb into 3 crates: kvdb, kvdb-memorydb && kvdb-rocksdb, #6693
2017-10-12 15:36:27 +02:00
arkpar
301190a16f
Fixed RETURNDATA out of bounds check
2017-10-12 12:57:27 +02:00
arkpar
99143c5872
Prevent going offline when restoring or taking snapshot
2017-10-12 12:37:03 +02:00
GitLab Build Bot
1d2319207a
[ci skip] js-precompiled 20171011-214450
2017-10-11 21:49:51 +00:00
GitLab Build Bot
0b666f605f
[ci skip] js-precompiled 20171011-192355
2017-10-11 19:29:28 +00:00
Jaco Greeff
7feb82c242
Display vouched overlay on dapps ( #6710 )
...
* Remove .only
* Add vouch overlays to dapps
* Cleanup address
* Only run where we have a contentHash
* GitLab kickstart
2017-10-11 21:05:50 +02:00
Tomasz Drwięga
34c65f60ef
Fix estimate gas if from is not provided. ( #6714 )
2017-10-11 21:05:38 +02:00
GitLab Build Bot
df19b8df69
[ci skip] js-precompiled 20171011-183646
2017-10-11 18:43:16 +00:00
Maciej Hirsz
1fec0b1833
Merge pull request #6708 from paritytech/mh-pubnode-fix-signer
...
Emulate signer pubsub on public node
2017-10-11 20:24:12 +02:00
Marek Kotewicz
bfff19ca9f
Merge pull request #6705 from paritytech/serde-migration
...
Removes dependency on rustc_serialize (#5988 )
2017-10-11 18:17:40 +02:00
Axel Chalon
a101a23ba3
Graceful exit when invalid CLI flags are passed ( #6485 )
2017-10-11 17:38:56 +02:00
Dmitry Kashitsyn
4f86f5b76d
Removes rustc-serialize references from Cargo.toml and Cargo.lock
2017-10-11 22:01:00 +07:00
Arkadiy Paronyan
7029dda87c
Fixed potential exp len overflow ( #6686 )
2017-10-11 16:41:28 +02:00
maciejhirsz
0c86357187
Emulate signer pubsub on public node
2017-10-11 16:21:44 +02:00
GitLab Build Bot
0bb845a05c
[ci skip] js-precompiled 20171011-121439
2017-10-11 12:19:40 +00:00
Jaco Greeff
f238c97c6f
Fix asciiToHex for characters < 0x10 ( #6702 )
2017-10-11 13:58:40 +02:00
Nicolas Gotchac
3a9b3b4729
Fix default values for address input ( #6701 )
2017-10-11 13:57:06 +02:00
Jaco Greeff
2bfb510554
Allow sign display of markdown ( #6707 )
2017-10-11 13:56:13 +02:00
Dmitry Kashitsyn
604cdde71d
Fixes bench and removes rustc_serialize dependency ( #5988 )
2017-10-11 17:39:12 +07:00
Arkadiy Paronyan
690f32c298
Fixed build warnings ( #6664 )
...
* Fixed build warnings
* Suppress warning
* Suppress warning for sure
2017-10-11 09:55:10 +02:00
Dmitry Kashitsyn
504b2de4a8
Migrating util/network from rust_serialize to serde ( #5988 )
2017-10-11 14:34:23 +07:00
Marek Kotewicz
e3fa460374
Merge pull request #6691 from paritytech/warp-options
...
Fix warp sync blockers detection
2017-10-10 21:51:18 +02:00
Marek Kotewicz
3c4fa5583a
Merge pull request #6687 from paritytech/difficulty-tests
...
Difficulty tests
2017-10-10 21:50:53 +02:00
debris
025c5aebc9
Merge branch 'master' into difficulty-tests
2017-10-10 20:10:24 +02:00
Marek Kotewicz
6279ff32f5
Separate migrations from util ( #6690 )
...
* separate migration from util and make its dependencies into libs:
* snappy
* kvdb
* error
* common
* renamed common -> macros
* util error does not depend on snappy module
* ethsync does not depend on util nor ethcore_error
* nibbleslice and nibblevec merged with patricia_trie crate
* removed unused dependencies from util
* util journaldb traits does not need to be public
* util_error
* fixed ethcore compile error
* ignore .swo files
* Update chain.rs
2017-10-10 20:01:27 +02:00
arkpar
cc681c623f
Fixed tests after rename
2017-10-10 17:48:37 +02:00
arkpar
007629464a
Fix warp sync blockers detection
2017-10-10 17:42:20 +02:00
arkpar
e5a7a674f9
Get rid of blockchain test warnings
2017-10-10 16:56:03 +02:00
arkpar
7234a7c630
Difficulty tests
2017-10-10 14:51:12 +02:00
Afri Schoedon
4e8853c9f7
Changelog for 1.7.3 ( #6678 )
...
* Prepare CHANGELOG for 1.7.3
* Update CHANGELOG for 1.7.3
* Update CHANGELOG for 1.7.3
* Split changelog(s) by major releases.
* Link previous release's changelogs in main
* Update CHANGELOG for 1.7.3
* More verbose changelog for 1.7.3
2017-10-10 10:51:12 +02:00
Jaco Greeff
afb9647f0d
Update lint
2017-10-09 14:42:26 +02:00
Jaco Greeff
c116e064d8
Merge master
2017-10-09 14:27:59 +02:00
GitLab Build Bot
dbd1976fc1
[ci skip] js-precompiled 20171009-121402
2017-10-09 12:19:46 +00:00
Nikolay Volf
1601030081
WASM gas schedule ( #6638 )
...
* some failing tests
* finalize
* fallable -> fallible
* alter mul/div/static_i64
* Update schedule.rs
* to u32
* balance charge also
* review fixes
* remove redundant line
2017-10-09 13:12:58 +02:00
Nicolas Gotchac
8d1964bc3b
Fix wallet view ( #6597 )
...
* Add safe fail for empty logs
* Filter transactions
* Add more logging
* Fix Wallet Creation and wallet tx list
* Remove logs
* Prevent selecting twice same wallet owner
* Fix tests
* Remove unused props
* Remove unused props
2017-10-09 13:11:18 +02:00
Marek Kotewicz
65ca2f9a07
Merge pull request #6660 from paritytech/byzantium-fork
...
Byzantium fork block number
2017-10-09 11:25:49 +02:00
Marek Kotewicz
de0d12d73c
Merge pull request #6652 from paritytech/returndatasize-builtin-fix
...
Fixed RETURNDATA size for built-ins
2017-10-09 11:24:34 +02:00
Jaco Greeff
439eb294bb
Merge branch 'master' into ui-2
2017-10-09 10:23:21 +02:00
GitLab Build Bot
ca6d5660c1
[ci skip] js-precompiled 20171008-172308
2017-10-08 17:28:31 +00:00
Robert Habermeier
b010fb5004
Light Client: fetch transactions/receipts by transaction hash ( #6641 )
...
* rpc: transaction/receipt requests made async
* rpc: light client fetches transaction and uncle by hash/index
* on_demand: request type for transaction index
* serve transaction index requests in light protocol
* add a test for transaction index serving
* fetch transaction and receipts by hash on light client
* fix decoding tests
* light: more lenient cost table parsing (backwards compatible)
* fix tests and warnings
* LES -> PIP
* Update provider.rs
* proper doc comments for public functions
2017-10-08 18:19:27 +02:00
Afri Schoedon
360ecd3728
Add Musicoin and MCIP-3 UBI hardfork. ( #6621 )
...
* Add musicoin chain spec.
* Add musicoin to parity node
* Add musicoin to the wallet
* Add i18n for musicoin
* Align musicoin chain spec with 1.8, ref #6134
* Update musicoin bootnodes
* Prepare MCIP-3 in musicoin chain spec.
* Update musicoin chain spec with contract addresses for MCIP-3
* Extend ethash params by MCIP-3
* Fix musicoin chain spec json
* Use U256 for block rewards.
* Update musicoin registrar
* Fix merge leftovers
* Update musicoin chain spec for latest master
* Bestow MCIP-3 block reward(s).
* Update musicoin registry once and for all
* Align MCIP-3 block reward with go implementation
* Remove mcip3 test chain spec from repository
* Update MCIP-3 block rewards
* Musicoin homestead transition is at 1_150_000
* Expect mcip3 transtion to be properly defined in chain spec.
* Panic handling for mcip to default to regular block rewards if not specified
* Giving mcip3 rewards a useful default value.
* Fix ethjson tests.
* Update musicoin chain spec
* Fix tests 0:)
* Add musicoin mcip3 era test spec.
* Update musicoin chain spec(s)
* Add tests for mcip3 era block rewards
* Fix tests
* Disable byzantium for musicoin
* Pass miner reward to the tracer.
* Allow modifying blockreward in MCIP-3 transition.
2017-10-08 18:17:59 +02:00
Robert Habermeier
59365b0133
fix aura backcompat: revert to manual encoding/decoding of transition proofs ( #6665 )
2017-10-06 17:36:26 +02:00
Arkadiy Paronyan
1b45870af8
Tweaked block download timeouts ( #6595 ) ( #6655 )
2017-10-06 13:46:11 +02:00
arkpar
07c63c14f3
Byzantium fork block number
2017-10-06 09:47:04 +02:00
Arkadiy Paronyan
77a2c77c45
Renamed RPC receipt statusCode field to status ( #6650 )
2017-10-06 09:11:17 +02:00
Svyatoslav Nikolsky
4e9d439f39
SecretStore: session level timeout ( #6631 )
...
* SecretStore: session level timeout
* removed obsolete TODO
2017-10-05 22:38:23 +02:00
Svyatoslav Nikolsky
6431459bcf
SecretStore: ShareRemove of 'isolated' nodes ( #6630 )
...
* SecretStore: ShareRemove from isolated nodes
* SecretStore: ServersSetChange && isolated nodes
* SecretStore: added threshold check + lost file
* SecretStore: remove isolated nodes before other sessions in ServersSetChange
* removed obsolete TODO
2017-10-05 22:37:41 +02:00
arkpar
6a1eea1b3d
Fixed RETURNDATA size for built-ins
2017-10-05 19:31:29 +02:00
Marek Kotewicz
d8094e0629
Merge pull request #6624 from paritytech/secretstore_exclusive_sessions
...
SecretStore: exclusive sessions
2017-10-05 18:44:44 +02:00
Robert Habermeier
77933aa8a1
Merge pull request #6649 from paritytech/eip8-fix
...
Fixed network protocol version negotiation
2017-10-05 18:07:45 +02:00
Robert Habermeier
7dc281ff2f
Merge pull request #6598 from AntoniosHadji/systemd
...
Updated systemd files for linux (Resolves #6592 )
2017-10-05 18:06:52 +02:00
arkpar
c4c2c77a40
Fixed network protocol version negotiation
2017-10-05 17:20:23 +02:00
Robert Habermeier
223467c816
Merge pull request #6646 from paritytech/restore-additional-info
...
move additional_params to machine, fixes registry on non-ethash chains
2017-10-05 16:19:15 +02:00
Jaco Greeff
0be532640a
SyncWarning store
2017-10-05 15:52:44 +02:00
Robert Habermeier
bae6a5eeec
move additional_info to engines, fixes registry on non-ethash chains
2017-10-05 15:34:30 +02:00
Jaco Greeff
4f082da02b
Lint fixes
2017-10-05 15:26:20 +02:00
Jaco Greeff
21c95bbec5
Update after merge
2017-10-05 15:04:45 +02:00
GitLab Build Bot
3f520b864b
[ci skip] js-precompiled 20171005-120001
2017-10-05 12:04:49 +00:00
GitLab Build Bot
c7ea25227a
[ci skip] js-precompiled 20171005-114154
2017-10-05 11:46:58 +00:00
Nicolas Gotchac
fb65732076
Fix Token Transfer in transaction list ( #6589 )
...
* Fix Token Transfer in TX LIST
* Add TokenReg logs logging
2017-10-05 13:03:31 +02:00
Tomasz Drwięga
e8b418ca03
Update jsonrpc dependencies and rewrite dapps to futures. ( #6522 )
...
* Bump version.
* Fix RPC crate.
* Fix BoxFuture in crates.
* Compiles and passes tests!
* Get rid of .boxed()
* Fixing issues with the UI.
* Remove minihttp. Support threads.
* Reimplement files serving to do it in chunks.
* Increase chunk size.
* Remove some unecessary copying.
* Fix tests.
* Fix stratum warning and ipfs todo.
* Switch to proper branch of jsonrpc.
* Update Cargo.lock.
* Update docs.
* Include dapps-glue in workspace.
* fixed merge artifacts
* Fix test compilation.
2017-10-05 12:35:01 +02:00
Svyatoslav Nikolsky
8961d987a9
fixed port offset in test
2017-10-04 22:12:45 +03:00
Svyatoslav Nikolsky
492da38d67
Merge pull request #6639 from paritytech/wasm-ext-balance
...
Balance queries implemented in WASM runtime
2017-10-04 22:09:00 +03:00
fro
6956d218b5
address balance extern provided for wasm
2017-10-04 19:09:18 +03:00
Arkadiy Paronyan
b7c2a30d7d
Don't expose port 80 for parity anymore ( #6633 )
2017-10-04 14:58:31 +02:00
Jaco Greeff
290060e6c4
Add sync warning to top
2017-10-04 14:49:41 +02:00
Nikolay Volf
4260910db6
WASM Runtime refactoring ( #6596 )
...
* refactoring to new pwasm-std
* pass reference
* remove ref
* missing underscores
2017-10-04 13:15:59 +02:00
Jaco Greeff
55b0b09d6a
Merge branch 'master' into ui-2
2017-10-04 12:31:09 +02:00
Svyatoslav Nikolsky
1b1548f539
removed obsolete TODO
2017-10-04 12:16:45 +03:00
Jaco Greeff
9f00159228
Rebuild
2017-10-04 08:26:26 +02:00
Svyatoslav Nikolsky
0092417b85
Merge branch 'master' into secretstore_exclusive_sessions
2017-10-03 13:39:42 +03:00
Svyatoslav Nikolsky
ec1a892f44
Merge pull request #6625 from paritytech/fix_compilation
...
Fix compilation
2017-10-03 13:39:12 +03:00
Svyatoslav Nikolsky
5e83ff8835
fix compilation
2017-10-03 12:59:48 +03:00
Svyatoslav Nikolsky
3091552504
fix indentation
2017-10-03 12:49:43 +03:00
Svyatoslav Nikolsky
fb38c20c16
SecretStore: exclusive sessions
2017-10-03 11:35:31 +03:00
Tomasz Drwięga
f8d256dafa
Downgrade futures. ( #6620 )
2017-10-03 10:04:07 +02:00
Anton Gavrilov
0a5c9b0465
Add pagination for trace_filter rpc method ( #6312 )
...
* Optional offset and count added on client level
* Rpc interface extended
* Tests corrected
* Filtering code refactored a little bit
* Offset type was changed to usize
* Handling of block hash in offset added
* Offset reworked to number
* Trailing comma removed
* Import for Quantity type added
* Offset and count moved into filter object
* Lost comma removed
* Return empty vec instead of None in case of incorrect range
2017-10-03 10:03:46 +02:00
Afri Schoedon
41c3b05a20
Disallow pasting recovery phrases on first run ( #6602 )
...
* Fix disallowing paste of recovery phrase on first run, ref #6581
* Allow the leader of CATS pasting recovery phrases.
2017-10-03 10:03:24 +02:00
GitLab Build Bot
931a7a2210
[ci skip] js-precompiled 20171002-143145
2017-10-02 14:37:01 +00:00
vacuum-car
fee056a251
fix typo: Unkown => Unknown ( #6559 )
2017-10-02 15:27:59 +02:00
Svyatoslav Nikolsky
9a086face4
SecretStore: administrative sessions prototypes ( #6605 )
...
* generate random channel encryption key on restart
* session-level nonces
* fixed warning after rebase
* session_nonce -> nonce
* full_generation_math_session_with_refreshing_shares && full_generation_math_session_with_adding_new_node
* add serveral secret shares at once
* SecretStore: initial ShareAdd session prototype
* SecretStore: ServersSetChange jobs
* SecretStore: servers set change session continued
* SecretStore: servers set change session continued
* SecretStore: servers set change session continued
* SecretStore: known_sessions iterator
* SecretStore: implemented SessionsQueue
* SecretStore: UnknownSessionsJobTransport
* SecretStore: node_added_using_servers_set_change almost done
* SecretStore: continue adding tests
* SecretStore: node_added_using_servers_set_change + node_added_using_share_add
* SecretStore: node_added_using_server_set_change_from_this_node
* SecretStore: node_moved_using_share_move
* SecretStore: node_moved_using_servers_set_change
* SecretStore: node_removed_using_share_remove
* SecretStore: node_removed_using_servers_set_change
* SecretStore: different folders for client && admin sessions
* SecretStore: started adding share change consensus (flush)
* SecretStore: fixed spurious tests failures
* enum JobPartialRequestAction
* SecretStore: started adding consensus layer to ShareAdd session
* SecretStore: starting external consensus for ShareAdd
* SecretStore: started restoring node_added_using_servers_set_change
* SecretStore: node_added_using_servers_set_change works with external consensus
* SecretStore: node_added_using_server_set_change_from_this_node works with external consensus
* removed debug comments/printlns
* SecretStore: share move session supports consensus
* SecretStore: share remove with external consensus
* SecretStore: started adding basic ShareAdd tests
* SecretStore: added ShareAdd tests
* SecretStore: added ShareAdd session to cluster
* SecretStore: added share move && remove sessions to cluster
* SecretStore: ShareMove session tests cleanup
* SecretStore: ShareRemove session tests cleanup
* SecretStore: added check_secret_is_preserved check
* SecretStore: added servers set change to cluster
* SecretStore: cleaned up ServersSetChange session tests
* SecretStore: cleaning + added tests for ShareRemove
* SecretStore: cleaning up
* SecretStore: propagated admin_public
* SecretStore: fixed persistent_key_storage test
* SecretStore: upgrade_db_from_1
* SecretStore: fixed ServersSetChange session completion
* SecretStore: check polynom1 in ShareAdd sessions (error for pre-v2 shares)
* SecretStore: fixing TODOs
* SecretStore: fixing TODOs
* SecretStore: check share change plan on 'old' slave nodes
* SecretStore: fixing TODOs
* SecretStore: store all admin sessions in single container to avoid overlaps
* SecretStore: do not update nodes set during admin sessions
* SecretStore: moved TODOs to appropriate methods
* SecretStore: TODOs
* SecretStore: added admin_public arg && fixed warnigs
* SecretStore: added shares_to_move_reversed to ShareMove session
* SecretStore: additional checks during consensus establishing
* license
* SecretStore: added TODO about starting ServersSetChange session
* SecretStore: redundant clones + docs + lsot unimplemented-s
* SecretStore: generation_session_completion_signalled_if_failed_on_master
* SecretStore: updated obsolete comment
* SecretStore: added type alias for current DocumentKeyShare serialization format
* SecretStore: fixed typo
* SecretStore; fixed warnings for futures 0.1.15
* fixed warning
2017-10-02 15:27:31 +02:00
Jaco Greeff
341697630d
Fix form submission issues
2017-10-02 11:30:20 +02:00
Leopold Joy
561e8b42a8
fix parity.io link in readme ( #6617 )
2017-10-02 11:21:12 +02:00
Svyatoslav Nikolsky
3a60d723d8
SecretStore: add node to existing session poc + discussion ( #6480 )
...
* full_generation_math_session_with_refreshing_shares && full_generation_math_session_with_adding_new_node
* add serveral secret shares at once
2017-10-02 11:07:18 +02:00
Jaco Greeff
39b5e5b98a
Signer-plugin-based approach (plugins available)
2017-09-29 15:04:57 +02:00
Svyatoslav Nikolsky
7cc43893d8
Revert "SecretStore; fixed warnings for futures 0.1.15"
...
This reverts commit 61daa5f3e7 .
2017-09-28 14:43:51 +03:00
Svyatoslav Nikolsky
61daa5f3e7
SecretStore; fixed warnings for futures 0.1.15
2017-09-28 14:43:05 +03:00
Antonios Hadjigeorgalis
a56c5e6ba8
Updated systemd files for linux ( #6592 )
...
Previous version put $BASE directory in root directory.
This version clearly explains how to run as root or as specific user.
Additional configuration:
* send SIGHUP for clean exit,
* restart on fail.
Tested on Ubuntu 16.04.3 LTS with 4.10.0-33-generic x86_64 kernel
2017-09-26 18:03:18 -04:00
GitLab Build Bot
cc759530fe
[ci skip] js-precompiled 20170926-133548
2017-09-26 13:40:38 +00:00
Robert Habermeier
bc167a211b
Generalize engine trait ( #6591 )
...
* move common forks and parameters to common params
* port specs over to new format
* fix RPC tests
* parity-machine skeleton
* remove block type
* extract out ethereum-specific methods into EthereumMachine
* beginning to integrate Machine into engines. dealing with stale transitions in Ethash
* initial porting to machine
* move block reward back into engine
* abstract block reward logic
* move last hash and DAO HF logic into machine
* begin making engine function parameters generic
* abstract epoch verifier and ethash block reward logic
* instantiate special ethereummachine for ethash in spec
* optional full verification in verify_block_family
* re-instate tx_filter in a way that works for all engines
* fix warnings
* fix most tests, further generalize engine trait
* uncomment nullengine, get ethcore tests compiling
* fix warnings
* update a bunch of specs
* re-enable engine signer, validator set, and transition handler
* migrate basic_authority engine
* move last hashes into executedblock
* port tendermint
* make all ethcore tests pass
* json-tests compilation
* fix RPC tests: change in gas limit for new block changed PoW hash
* fix minor grumbles
* validate chainspecs
* fix broken import
* fix transaction verification for pre-homestead
2017-09-26 14:19:08 +02:00
Wei Tang
d8af9f4e7b
Add RPC eth_chainId for querying the current blockchain chain ID ( #6329 )
...
* Add RPC eth_chainId for querying the current blockchain chain ID
Currently although we can use `net_version` RPC call to get the
current network ID, there's no RPC for querying the chain ID. This
makes it impossible to determine the current actual blockchain using
the RPC. An ETH/ETC client can accidentally connect to an ETC/ETH RPC
endpoint without knowing it unless it tries to sign a transaction or
it fetch a transaction that is known to have signed with a chain
ID. This has since caused trouble for application developers, such as
MetaMask, to add multi-chain support.
The same RPC endpoint is also about to be merged for ETC's
go-ethereum: https://github.com/ethereumproject/go-ethereum/pull/336
* Add eth_chainId to js's web3 interface
* Add a mocked test for eth_chainId
* Add chainId in js's jsonrpc interfaces
* Change return type for eth_chainId to `Option<u64>`
* Change name eth_chainId to parity_chainId
* Wrong test name and missed var for rpc_parity_chain_id test
* Use U256 to return chainId and fix for master
u64 returns decimal integer, and there seems to be no type called
U64. So here I use U256 to return the hex integer.
* Fix chainID test
Before EIP155 fork number, chainID should be null.
* Change both parity_chainId and transaction::chainId to use U64
This makes it consistent that all chain ids returned are hex string.
* Fix wrong U64 serialization
2017-09-26 14:17:07 +02:00
Tomasz Drwięga
59d946bf00
Debounce sync status. ( #6572 )
2017-09-26 13:05:41 +02:00
GitLab Build Bot
6840df4c09
[ci skip] js-precompiled 20170926-093714
2017-09-26 09:43:21 +00:00
Maciej Hirsz
04e36456bd
Merge pull request #6588 from paritytech/mh-pubnode-hardware-wallets
...
[Public Node] Disable tx scheduling and hardware wallets
2017-09-26 10:37:47 +02:00
Jaco Greeff
9daa884699
Update dependencies
2017-09-26 09:07:22 +02:00
Jef
5c08698fa0
Use memmap for dag cache ( #6193 )
...
* Rebase and fix compilation errors (tests not yet fixed)
* Use `debug_assert` over `assert`
* Fix tests
* Assert safety, clean up
* Fix up stale cache removal, move one assert to debug_assert
* Remove printlns
* Add licenses
* Fix benches
* Inline some no-ops in a hot loop that weren't being inlined
* Add spooky comment to make sure no-one removes the inlining annotations
* Minor cleanup
* Add option to switch between mmap and ram
* Flag ethash to use less memory when running light client
* Fix tests
* Remove todo comment (it's done)
* Replace assertion with error return
* Fix indentation
* Use union instead of `transmute`
* Fix benches
* Extract to constants
* Clean up and fix soundness holes
* Fix formatting
* Ignore missing-file errors
* Make incorrect cache size an error condition instead of a panic, remove dead code
* Fix compilation errors from rebase
* Fix compilation errors in tests
* Fix compilation errors in tests
2017-09-25 19:45:33 +02:00
maciejhirsz
0e43ce6e07
Disable time conditions in Tx UI #6445
2017-09-25 17:08:09 +02:00
Robert Habermeier
70be064aa5
Merge pull request #6582 from asymmetric/batch
...
Rename Requests to Batch
2017-09-25 15:26:18 +02:00
GitLab Build Bot
f576926fa2
[ci skip] js-precompiled 20170925-101032
2017-09-25 10:15:30 +00:00
Maciej Hirsz
b74065a471
Merge pull request #6566 from paritytech/td-rpc-url-fix
...
Use host as ws/dapps url if present.
2017-09-25 11:25:00 +02:00
Lorenzo Manacorda
aab1cf020c
Rename builder module to batch
2017-09-24 20:09:40 +02:00
Lorenzo Manacorda
5f025cc1b8
Rename Requests to Batch
2017-09-24 20:09:30 +02:00
Jaco Greeff
81c71ff4ab
Update submodules to master version
...
# Conflicts:
# js/src/api/contract/contract.js
# js/src/redux/providers/requestsActions.js
2017-09-22 14:15:14 +02:00
Jaco Greeff
ab902bfb66
Update packages
2017-09-22 14:03:26 +02:00
maciejhirsz
339f63a61a
Fix :NaN port returned by dappsUrl
2017-09-22 13:48:09 +02:00
maciejhirsz
1b7c90e9e1
Remove public node hacks
2017-09-21 16:52:00 +02:00
Tomasz Drwięga
965e8ae74e
Use host as ws/dapps url if present.
2017-09-21 15:11:15 +02:00
Jaco Greeff
61bbc19b0b
Merge branch 'master' into ui-2
2017-09-21 14:05:27 +02:00
Arkadiy Paronyan
684b142711
Sync progress and error handling fixes ( #6560 )
2017-09-21 10:12:27 +02:00
Arkadiy Paronyan
4dc7d3dc45
Fixed receipt serialization and RPC ( #6555 )
2017-09-21 10:11:53 +02:00
Nicolas Gotchac
2b39c43e81
Fix number of confirmations for transaction ( #6552 )
...
* 1 confirmation when tx is mined
* Spelling mistake
2017-09-21 10:10:21 +02:00
Travis Jacobs
9e0d2c15cd
Fix #6540 ( #6556 )
...
* Fix #6540
- just skip the checkRequest call if result of postTransaction is a tx ID
* Fix requestId naming
2017-09-21 10:10:09 +02:00
Jaco Greeff
9ed8178dff
Adjust Requests position
2017-09-20 15:49:03 +02:00
Jaco Greeff
4fa4dd8fc8
Update status plugins
2017-09-20 15:01:30 +02:00
Jaco Greeff
dfe45338c0
Move status to the top (alignment/overlaps)
2017-09-20 13:08:38 +02:00
Jaco Greeff
32a29c11a0
CSS lint fixes
2017-09-20 12:55:47 +02:00
Jaco Greeff
d02c696030
Update failing tests
2017-09-20 12:48:03 +02:00
Jaco Greeff
f9b7be7576
Merge branch 'master' into ui-2
2017-09-20 12:14:46 +02:00
GitLab Build Bot
65ca9afce2
[ci skip] js-precompiled 20170920-093438
2017-09-20 09:39:32 +00:00
Jaco Greeff
abb94c8bf3
Update ParityBar (container in Status)
2017-09-20 11:24:19 +02:00
Jaco Greeff
99e981abcf
Fix failing hardware tests ( #6553 )
2017-09-20 10:43:14 +02:00
Jaco Greeff
206abaebb9
Add latest @parity/ui
2017-09-20 09:45:28 +02:00
Jaco Greeff
ac3d548079
Empty block
2017-09-20 09:09:05 +02:00
Jaco Greeff
7e1cb97c7e
Make status always visible
2017-09-20 09:04:39 +02:00
Jaco Greeff
51674f2cc4
Update dependencies
2017-09-19 20:48:05 +02:00
Jaco Greeff
413da805b5
Update status styling
2017-09-19 14:28:33 +02:00
Nicolas Gotchac
8a21cde188
Required validators >= num owners ( #6551 )
2017-09-19 11:58:04 +02:00
Marek Kotewicz
f38d34919b
Random cleanups / improvements to a state ( #6472 )
2017-09-19 11:34:13 +02:00
Jaco Greeff
2eac4f6606
Align request overlay styling
2017-09-18 15:20:10 +02:00
Afri Schoedon
9196c7268a
Changelog for 1.7.2 ( #6363 )
...
* Prepare changelog for 1.7.1
* Update changelog for 1.7.1
* Prepare changelog for 1.7.2
* Update CHANGELOG
* Update changelog for 1.7.2
* Snapshot sync kicks in after 10k blocks
* Add ropsten fork to changelog
* Add Gnosis multi-sig support to Changelog
* Update final changelog for 1.7.2
2017-09-18 14:40:28 +02:00
Jaco Greeff
3795a4869e
Update with master merged packages
2017-09-18 14:03:34 +02:00
Jaco Greeff
2b48668327
Fix merge linting issues
2017-09-18 11:56:08 +02:00
Jaco Greeff
312360ef4e
Update master merge packages
2017-09-18 11:52:21 +02:00
Jaco Greeff
db9a70d008
Merge branch 'master' into ui-2
...
# Conflicts:
# js/package-lock.json
# js/src/Application/application.js
# js/src/api/rpc/parity/parity.js
# js/src/api/subscriptions/manager.spec.js
# js/src/api/subscriptions/personal.spec.js
# js/src/jsonrpc/interfaces/parity.js
# js/src/mobx/hardwareStore.js
# js/src/mobx/hardwareStore.spec.js
# js/src/modals/index.js
# js/src/redux/providers/signerMiddleware.spec.js
# js/src/ui/SelectionList/selectionList.css
# js/src/views/Account/account.spec.js
# js/src/views/Accounts/accounts.spec.js
# js/src/views/Application/Extension/store.js
# js/src/views/Signer/components/SignRequest/signRequest.spec.js
2017-09-18 11:44:09 +02:00
Arkadiy Paronyan
1b6d840ada
Ropsten fork ( #6533 )
2017-09-18 11:12:42 +02:00
Jaco Greeff
afec8358d3
Update dependencies
2017-09-18 10:56:09 +02:00
Jaco Greeff
1e1137a6f7
Update dependencies
2017-09-18 10:35:00 +02:00
Jaco Greeff
935d1476e9
Update test execution
2017-09-18 10:15:36 +02:00
Arkadiy Paronyan
25b35ebddd
Byzantium updates ( #5855 )
...
* EIP-211 updates
* benchmarks
* blockhash instruction gas cost updated
* More benches
* EIP-684
* EIP-649
* EIP-658
* Updated some tests
* Modexp fixes
* STATICCALL fixes
* Pairing fixes
* More STATICALL fixes
* Use paritytech/bn
* Fixed REVERTing of contract creation
* Fixed more tests
* Fixed more tests
* Blockchain tests
* Enable previously broken tests
* Transition test
* Updated tests
* Fixed modexp reading huge numbers
* Enabled max_code_size test
* Review fixes
* Updated pairing pricing
* missing commas (style)
* Update test.rs
* Small improvements
* eip161abc
2017-09-15 21:07:54 +02:00
Tomasz Drwięga
b602fb4a5e
Fix extension detection ( #6452 )
...
* Fix extension detection.
* Fix mobx quirks.
* Update submodule.
2017-09-15 15:06:42 +02:00
Tomasz Drwięga
54bd7d26dc
Downgrade futures. ( #6521 )
2017-09-15 14:45:55 +02:00
Marek Kotewicz
d69dd17d3c
Merge pull request #6478 from Hawstein/trie-separated-from-util
...
separate trie from util and make its dependencies into libs
2017-09-15 09:39:10 +02:00
Hawstein
dd7a60c7a8
rename trie to patricia-trie
2017-09-15 11:49:26 +08:00
Hawstein
ade37be25b
separate trie from util and make its dependencies into libs:
...
* bytes
* hashdb
* memorydb
* nibbleslice
* nibblevec
2017-09-15 11:03:53 +08:00
Alexey
79659bdc76
WASM sha3 test ( #6512 )
...
* sha3 test for empty input implemented
* rename sha3-> keccak
* update keccak test. Now it expects input to hash
* fix gas_left in tests
2017-09-14 19:32:29 +02:00
Tomasz Drwięga
06ff866e9d
Fix broken JavaScript tests ( #6498 )
...
* Fixing/removing failing JS tests.
* Fix javascript tests.
2017-09-14 19:32:06 +02:00
Svyatoslav Nikolsky
e3fc3ccada
SecretStore: use random key to encrypt channel + session-level nonce ( #6470 )
...
* generate random channel encryption key on restart
* session-level nonces
* fixed warning after rebase
* session_nonce -> nonce
2017-09-14 19:29:01 +02:00
Fredrik Harrysson
75b6a31e87
Trezor Support ( #6403 )
...
* Copy modal from keepkey branch and generalize
The keepkey PinMatrix modal needs to be the same for Trezor, but we
should probably try to keep it general since it can be used for both.
* Add trezor communication code
This is a result of much trial-and-error and a couple of dead-ends in
how to communicate and wire everything up.
Code here is still a bit WIP with lots of debug prints and stuff.
The test works though, it is possible to sign a transaction.
* Extend the basic lib to allow Trezor
This is kind of ugly and needs some cleanup and generalization. I’ve
just copy-pasted some things to bring in the trezor wallets. I’ve also
had to add a lock to the USB API so that only one thing talks to the
USB at once.
* Add RPC plumbing needed
We need to be able to get “locked” devices from the frontend to figure
out if we’re going to display the PinMatrix or not. Then we need to be
able to send a pin to a device.
* Add logic to query backend for Trezor and display PinMatrix
There’s a bug somewhere here because signing a transaction fails if you
take too long to press the confirm button on the device.
* Change back to paritytech branch
As my fork has been merged in.
* Converting spaces to tabs, as it should be
* Incorporate correct handling of EIP-155
Turns out the Trezor was adjusting the v part of the signature, and
we’re already doing that so it was done twice.
* Some circular logic here that was incorrect
BE-encoded U256 is almost the same as RLP encoded without the
size-byte, except for <u8 sized values. What’s really done is
BE-encoded U256 and then left-trimmed to the smallest size. Kind of
obvious in hindsight.
* Resolve issue where not clicking fast enough fails
The device will not repeat a ButtonRequest when you read from it, so
you need to have a blocking `read` for whatever amount of time that you
want to give the user to click. You could also have a shorter timeout
but keep retrying for some amount of time, but it would amount to the
same thing.
* Scan after pin entry to make accepting it faster
* Remove ability to cancel pin request
* Some slight cleanup
* Probe for the correct HID Version to determine padding
* Move the PinMatrix from Accounts to Application
* Removing unused dependencies
* Mistake in copying over stuff from keepkey branch
* Simplify FormattedMessage
* Move generated code to external crate
* Remove ethcore-util dependency
* Fix broken import in test
This test is useless without a connected Trezor, not sure how to make
it useful without one.
* Merge branch 'master' into fh-4500-trezor-support
# Conflicts:
# rpc/src/v1/helpers/dispatch.rs
* Ignore test that can't be run without trezor device
* Fixing grumbles
* Avoiding owning data in RPC method
* Checking for overflow in v part of signature
* s/network_id/chain_id
* Propagating an error from the HID Api
* Condensing code a little bit
* Fixing UI.
* Debugging trezor.
* Minor styling tweak
* Make message type into an actual type
This makes the message type that the RPC message accepts into an actual
type as opposed to just a string, based on feedback. Although I’m not
100% sure this has actually improved the situation.
Overall I think the hardware wallet interface needs some refactoring
love.
* Split the trezor RPC endpoint
It’s split into two more generic endpoints that should be suitable for
any hardware wallets with the same behavior to sit behind.
* Reflect RPC method split in javascript
* Fix bug with pin entry
* Fix deadlock for Ledger
* Avoid having a USB lock in just listing locked wallets
* Fix javascript issue (see #6509 )
* Replace Mutex with RwLock
* Update Ledger test
* Fix typo causing faulty signatures (sometimes)
* *Actually* fix tests
* Update git submodule
Needed to make tests pass
* Swap line orders to prevent possible deadlock
* Make setPinMatrixRequest an @action
2017-09-14 19:28:43 +02:00
Jaco Greeff
baeab01357
Current @parity/shared (required dapp-* rebuild)
2017-09-13 17:51:38 +02:00
Jaco Greeff
4a184dbbe6
Merge branch 'master' into ui-2
2017-09-13 15:51:02 +02:00
Jaco Greeff
5d774d360e
Update with latest dependencies
2017-09-13 13:09:32 +02:00
Jaco Greeff
94df97a5ae
Update packages
2017-09-12 15:58:13 +02:00
Jaco Greeff
6e2e122288
Update with recent @parity/ui
2017-09-12 13:32:21 +02:00
ivegotasthma
e9abcb2f6d
Fix compiler warning ( #6491 )
2017-09-12 09:16:39 +02:00
Liu-Cheng Xu
8fda8e2071
Fix typo ( #6505 )
2017-09-12 09:15:37 +02:00
Jaco Greeff
dc85c66052
file: protocol updates
2017-09-11 14:47:34 +02:00
Svyatoslav Nikolsky
03e039b13d
wasm: math_sub_with_overflow test ( #6474 )
2017-09-11 11:43:33 +02:00
Jaco Greeff
2bcdb07b62
Run electron (dev) from build directory
2017-09-11 10:37:09 +02:00
Jaco Greeff
ceb1dd8d83
Electron app should not display extension install message
2017-09-11 10:00:51 +02:00
Jaco Greeff
093eb3915a
Disable signer plugin
2017-09-11 09:31:28 +02:00
GitLab Build Bot
dcea17f8c6
[ci skip] js-precompiled 20170910-175532
2017-09-10 18:00:22 +00:00
Nicolas Gotchac
f1a050366f
Fix slow balances ( #6471 )
...
* Update token updates
* Update token info fetching
* Update logger
* Minor fixes to updates and notifications for balances
* Use Pubsub
* Fix timeout.
* Use pubsub for status.
* Fix signer subscription.
* Process tokens in chunks.
* Fix tokens loaded by chunks
* Linting
* Dispatch tokens asap
* Fix chunks processing.
* Better filter options
* Parallel log fetching.
* Fix signer polling.
* Fix initial block query.
* Token balances updates : the right(er) way
* Better tokens info fetching
* Fixes in token data fetching
* Only fetch what's needed (tokens)
* Fix linting issues
* Revert "Transaction permissioning (#6441 )"
This reverts commit eed0e8b03a .
* Revert "Revert "Transaction permissioning (#6441 )""
This reverts commit 8f96415e58dde652e5828706eb2639d43416f448.
* Update wasm-tests.
* Fixing balances fetching
* Fix requests tracking in UI
* Fix request watching
* Update the Logger
* PR Grumbles Fixes
* PR Grumbles fixes
* Linting...
2017-09-10 18:03:35 +02:00
Nikolay Volf
ee14a3fb31
WASM runtime update ( #6467 )
...
* refactor to new parity-wasm
* more errors refactoring
* final test
* update tests
* fix merge bugs
2017-09-10 18:02:31 +02:00
Robert Habermeier
375668bc40
Compatibility with whisper v6 ( #6179 )
...
* compatibility with whisper v6
* separate subprotocol for parity extensions
* kill version field
2017-09-10 18:02:14 +02:00
Robert Habermeier
246b5282e5
Merge pull request #6468 from paritytech/light-poa-2
...
light-poa round 2: allow optional casting of engine client to full client
2017-09-08 14:07:52 +02:00
Jaco Greeff
6d8b511d25
Merge master
2017-09-07 13:32:45 +02:00
Jaco Greeff
ee4f370bdb
Update CSS linting
2017-09-07 12:51:57 +02:00
Jaco Greeff
afb101e234
Cleanup handler determination
2017-09-07 12:31:32 +02:00
Svyatoslav Nikolsky
8f434cd02c
secretstore: attributes under docs ( #6475 )
2017-09-06 11:09:22 +02:00
Robert Habermeier
ffced4e17f
fix test build
2017-09-05 21:24:15 +02:00
Robert Habermeier
7d1c7a0474
allow optional casting of engine client to full client
2017-09-05 17:55:14 +02:00
Robert Habermeier
ad39446e87
Revert "fixed master ( #6465 )"
...
This reverts commit 899538ae25 .
2017-09-05 17:54:05 +02:00
Marek Kotewicz
7e3c081007
Merge pull request #6464 from paritytech/util_deps_cleanup
...
cleanup util dependencies
2017-09-05 16:21:05 +02:00
Marek Kotewicz
78c264769e
Merge pull request #6463 from paritytech/earlymergedb_traces
...
removed redundant earlymergedb trace guards
2017-09-05 16:20:43 +02:00
Marek Kotewicz
b6a1e29d11
Merge pull request #6461 from paritytech/util_error_chain
...
UtilError utilizes error_chain!
2017-09-05 16:20:19 +02:00
debris
4e66d3ca21
fixed old import in json-tests
2017-09-05 15:25:06 +02:00
debris
8b5ce1a772
Merge branch 'master' into util_deps_cleanup
2017-09-05 14:59:42 +02:00
debris
118081c45a
Merge branch 'master' into earlymergedb_traces
2017-09-05 14:59:07 +02:00
debris
14d00a7f72
Merge branch 'master' into util_error_chain
2017-09-05 14:58:35 +02:00
Marek Kotewicz
899538ae25
fixed master ( #6465 )
...
* fixed master
* Revert "Merge pull request #6370 from paritytech/light-poa"
This reverts commit 3c60f99def , reversing
changes made to b731ccea18 .
2017-09-05 14:53:09 +02:00
GitLab Build Bot
e5bbabb2ba
[ci skip] js-precompiled 20170905-115347
2017-09-05 11:58:41 +00:00
Jaco Greeff
1d8886fa7d
Adjust Signer title colours
2017-09-05 13:33:57 +02:00
Axel Chalon
be745f711f
Refactor and port CLI from Docopt to Clap ( #2066 ) ( #6356 )
...
* Refactor and port CLI from Docopt to Clap (#2066 )
* Add --can-restart and --force-direct to help
* Add flag support to subc & move import/export options to subcommand
* Reorder subcommand args (put positional args last in CLI help message)
2017-09-05 12:30:22 +01:00
Nicolas Gotchac
a62238c19d
Add language selector in production ( #6317 )
...
* Add language selector in PRODUCTIN
* Fix wrong i18n keys
* Update the default i18n files
2017-09-05 12:26:29 +01:00
Tomasz Drwięga
7462a69583
eth_call returns output of contract creations ( #6420 )
...
* eth_call returns output of contract creations
* Fix parameters order.
* Save outputs for light client as well.
2017-09-05 12:22:19 +01:00
debris
4d0e05a8c1
cleanup util dependencies
2017-09-05 13:08:32 +02:00
debris
2b11448b45
removed redundant earlymergedb trace guards
2017-09-05 12:54:00 +02:00
debris
0a71ee95af
Merge branch 'master' of github.com:paritytech/parity into util_error_chain
2017-09-05 12:38:15 +02:00
Marek Kotewicz
c49beccadc
Merge pull request #6459 from paritytech/fo-6418-dont-export-bigint
...
Refactor: Don't reexport bigint from util
2017-09-05 12:38:03 +02:00
debris
3497eab26c
Merge branch 'fo-6418-dont-export-bigint' of github.com:paritytech/parity into util_error_chain
2017-09-05 12:15:39 +02:00
debris
236b6f1c3e
UtilError uses error_chain!, moved OutOfBounds and Mismatched to unexpected crate
2017-09-05 12:14:03 +02:00
Fredrik
2b39af1f09
Updating imports that were introduced with merge
2017-09-05 12:08:02 +02:00
Arkadiy Paronyan
eed0e8b03a
Transaction permissioning ( #6441 )
2017-09-05 10:39:50 +01:00
debris
ccd6ad52cc
Merge branch 'fo-6418-dont-export-bigint' of github.com:paritytech/parity into util_error_chain
2017-09-05 11:15:39 +02:00
debris
c623e5f232
ethcore-network does not use UtilError
2017-09-05 11:14:28 +02:00
Fredrik Harrysson
dccdedc001
Merge branch 'master' into fo-6418-dont-export-bigint
2017-09-05 10:48:54 +02:00
Fredrik
d1930ac708
Fix missing imports in tests I had missed
2017-09-05 10:18:21 +02:00
Fredrik
a688370c9d
Remove now unnecessary util glob imports
2017-09-05 10:18:07 +02:00
Svyatoslav Nikolsky
2df61d0a8c
Merge pull request #6411 from paritytech/secretstore_tests
...
Added missing SecretStore tests - signing session
2017-09-05 10:35:21 +03:00
Robert Habermeier
3c60f99def
Merge pull request #6370 from paritytech/light-poa
...
Light-client sync for contract-based PoA
2017-09-04 21:20:29 +02:00
Fredrik
e54784bfeb
Merge branch 'master' into fo-6418-dont-export-bigint
...
# Conflicts:
# dapps/src/tests/helpers/registrar.rs
# ethcore/evm/src/interpreter/shared_cache.rs
# ethcore/light/src/client/header_chain.rs
# ethcore/light/src/client/mod.rs
# ethcore/light/src/net/mod.rs
# ethcore/light/src/on_demand/request.rs
# ethcore/light/src/on_demand/tests.rs
# ethcore/light/src/provider.rs
# ethcore/node_filter/src/lib.rs
# ethcore/src/block.rs
# ethcore/src/blockchain/blockchain.rs
# ethcore/src/client/test_client.rs
# ethcore/src/engines/authority_round/mod.rs
# ethcore/src/engines/basic_authority.rs
# ethcore/src/engines/mod.rs
# ethcore/src/engines/tendermint/mod.rs
# ethcore/src/engines/validator_set/contract.rs
# ethcore/src/engines/validator_set/multi.rs
# ethcore/src/engines/validator_set/safe_contract.rs
# ethcore/src/engines/vote_collector.rs
# ethcore/src/miner/external.rs
# ethcore/src/miner/miner.rs
# ethcore/src/miner/service_transaction_checker.rs
# ethcore/src/miner/work_notify.rs
# ethcore/src/pod_account.rs
# ethcore/src/pod_state.rs
# ethcore/src/snapshot/block.rs
# ethcore/src/snapshot/consensus/work.rs
# ethcore/src/snapshot/mod.rs
# ethcore/src/snapshot/service.rs
# ethcore/src/spec/spec.rs
# ethcore/src/state/backend.rs
# ethcore/src/trace/db.rs
# ethcore/src/verification/queue/mod.rs
# ethcore/src/verification/verification.rs
# parity/informant.rs
# rpc/src/v1/helpers/dispatch.rs
# rpc/src/v1/helpers/light_fetch.rs
# rpc/src/v1/helpers/signing_queue.rs
# rpc/src/v1/impls/eth.rs
# rpc/src/v1/impls/eth_filter.rs
# rpc/src/v1/impls/eth_pubsub.rs
# rpc/src/v1/impls/light/eth.rs
# rpc/src/v1/impls/signing.rs
# rpc/src/v1/tests/helpers/miner_service.rs
# rpc/src/v1/tests/helpers/snapshot_service.rs
# rpc/src/v1/tests/helpers/sync_provider.rs
# rpc/src/v1/tests/mocked/eth.rs
# stratum/src/lib.rs
# sync/src/blocks.rs
# sync/src/chain.rs
# sync/src/light_sync/mod.rs
# sync/src/tests/helpers.rs
# sync/src/tests/snapshot.rs
# updater/src/updater.rs
# util/src/lib.rs
# util/triehash/src/lib.rs
2017-09-04 18:32:55 +02:00
Fredrik
308f36a532
Don't reexport bigint from util
2017-09-04 16:36:49 +02:00
Jaco Greeff
a5cc14ce8c
Signer plugin attachment
2017-09-04 16:17:39 +02:00
Robert Habermeier
06e97d107b
fix rwlock import
2017-09-04 14:52:39 +02:00
Robert Habermeier
7ac3dd0889
Merge branch 'light-poa' of github.com:paritytech/parity into light-poa
2017-09-04 12:49:06 +02:00
Robert Habermeier
ffde22e711
move genesis_epoch_data function to spec
2017-09-04 12:46:32 +02:00
Robert Habermeier
e69e8254db
instantiate genesis epoch data if nonexistant in header_chain
2017-09-04 12:37:03 +02:00
Robert Habermeier
372779915f
Merge branch 'master' into light-poa
2017-09-04 12:30:37 +02:00
Jaco Greeff
7818ed98c7
Add status bar extension plugins
2017-09-04 12:24:46 +02:00
NikVolf
e00de28556
proper update
2017-09-03 19:54:18 +02:00
Marek Kotewicz
b731ccea18
triehash is separated from util ( #6428 )
2017-09-03 09:11:14 +02:00
Gav Wood
0309462b36
Update signing_session.rs
2017-09-03 09:06:41 +02:00
Gav Wood
b4cd7ca49a
Update consensus_session.rs
2017-09-03 09:06:19 +02:00
Hawstein
7b8af30590
remove re-export of parking_lot in util ( #6435 )
2017-09-02 20:09:13 +02:00
Hawstein
1d95fe481f
fix modexp bug: return 0 if base=0 ( #6424 )
2017-09-02 20:08:34 +02:00
Hawstein
2faa28ce9b
separate semantic_version from util ( #6438 )
2017-09-02 13:14:21 +02:00
Hawstein
0b5285c282
move timer.rs to ethcore ( #6437 )
2017-09-02 10:54:39 +02:00
Arkadiy Paronyan
ffae847b48
spacing around comas
2017-09-02 09:57:53 +02:00
GitLab Build Bot
6b8c9cac23
[ci skip] js-precompiled 20170901-161931
2017-09-01 16:33:31 +00:00
Marek Kotewicz
6d98f6fc9a
Merge pull request #6433 from Hawstein/not-reexport-ansi_term
...
remove re-export of ansi_term in util
2017-09-01 17:43:33 +02:00
Hawstein
cf366bdb29
util should not reexport ansi_term
2017-09-01 22:57:57 +08:00
Jaco Greeff
fb7b11553a
Test-drive extensions, status first
2017-09-01 14:29:57 +02:00
Jaco Greeff
a1bde406de
Don't clobber window.parity, extend
2017-09-01 13:03:00 +02:00
Craig O'Connor
56f46edab8
Pub sub blocks ( #6139 )
...
* fun start
* playin
* linting
* cleanup kk 1
* cleanup kk 2
* package
* oops
* grumbles
* lint
* lint 2
* all-possible-cases
* conflict resolution
* conflict resolution
* ready
* lint
* remove package-lock
* Restart subscription on transport close.
* Bring back the formatter.
* Fix formatter.
2017-09-01 12:23:41 +02:00
Robert Habermeier
47f7366a5c
Merge pull request #6423 from paritytech/keccak_fn
...
replace trait Hashable with fn keccak
2017-08-31 17:20:05 +02:00
Jaco Greeff
d0d8002b66
Override uiUrl
2017-08-31 15:36:57 +02:00
debris
e9cc4c848b
replace sha3 with keccak in few comments
2017-08-31 15:25:30 +02:00
Hawstein
d31b7d8968
add more hash backward compatibility test for bloom ( #6425 )
2017-08-31 14:50:06 +02:00
Jaco Greeff
d957a10f47
Update to cater for token URL
2017-08-31 14:08:15 +02:00
debris
ba3b2712a1
fixed grumbles
2017-08-31 12:38:53 +02:00
Jaco Greeff
0238295654
Merge branch 'master' into ui-2
2017-08-31 12:16:27 +02:00
debris
94f717a255
Merge branch 'master' into keccak_fn
2017-08-31 11:53:26 +02:00
debris
7849fff41e
finished
2017-08-31 11:35:41 +02:00
debris
f0e8abb07b
Hashable::sha3 -> fn keccak for ethcore
2017-08-30 19:18:28 +02:00
Hawstein
e04d58f647
use one hasher in Bloom ( #6404 )
...
* remove the redundant hasher in Bloom
* add the test to check the hash backward compatibility
2017-08-30 18:38:05 +02:00
Robert Habermeier
abfa8e95a2
Merge branch 'master' into light-poa
2017-08-30 18:18:52 +02:00
debris
e120c75d17
Hashable::sha3 -> fn keccak for ethcore-network
2017-08-30 17:14:52 +02:00
debris
0e088d783d
Hashable::sha3 -> fn keccak for ethcore-util
2017-08-30 16:20:21 +02:00
Axel Chalon
6b5ad69c22
Remove reexport of HeapSizeOf in util ( #6419 )
2017-08-30 16:04:47 +02:00
Marek Kotewicz
f7e15f2450
Merge pull request #6194 from paritytech/Fix-4858
...
Rewards on closing blocks
2017-08-30 15:07:38 +02:00
debris
8a420d6580
fixed merge
2017-08-30 14:37:02 +02:00
debris
88200a1193
Merge branch 'master' into Fix-4858
2017-08-30 14:30:39 +02:00
Jaco Greeff
5b8236cdbd
Update for non HTTP use
2017-08-30 12:47:14 +02:00
Marek Kotewicz
b47e76a1a5
Merge pull request #6413 from paritytech/immediate-transitions-fix-2
...
ensure balances of constructor accounts are kept
2017-08-30 12:27:37 +02:00
Jaco Greeff
be56a06790
Basic electron interface
2017-08-30 11:59:38 +02:00
Robert Habermeier
4e1fefc8ea
test balance of spec-constructed account is kept
2017-08-30 11:57:48 +02:00
Jaco Greeff
d7de40ab4c
Init history in dapp module
2017-08-30 11:29:15 +02:00
Marek Kotewicz
da91a07906
Merge pull request #6394 from paritytech/trie_recursion
...
removed recursion from triedbmut::lookup
2017-08-30 10:07:44 +02:00
Jaco Greeff
b1428c2b56
Update packages
2017-08-30 09:29:28 +02:00
Robert Habermeier
c1c7d7a3e2
ensure balances of constructor accounts are kept
2017-08-29 17:02:38 +02:00
Robert Habermeier
36d046f3ca
do not activate genesis epoch in immediate transition validator contract ( #6349 )
2017-08-29 15:16:24 +02:00
Robert Habermeier
d3c3e0b164
Merge branch 'master' into light-poa
2017-08-29 15:14:58 +02:00
Leo Arias
53401d6962
Use git for the snap version ( #6271 )
...
For commits with an annotated tag, that tag will be the version. For other commits, a git identifier will be used.
This way, there is no need to manually edit the snap version.
2017-08-29 15:14:07 +02:00
Gav Wood
e3666457cf
Consistent use of ,s
2017-08-29 15:12:58 +02:00
Jaco Greeff
35202e28c2
Update webpack
2017-08-29 15:11:09 +02:00
Gav Wood
50495c6898
Merge branch 'master' into Fix-4858
2017-08-29 15:11:05 +02:00
Arkadiy Paronyan
d520aa2633
Connection filter ( #6359 )
2017-08-29 14:38:01 +02:00
Svyatoslav Nikolsky
a3eceb0c6c
added missing SecretStore tests
2017-08-29 15:35:39 +03:00
Jaco Greeff
2593477151
Don't show tags for dapps
2017-08-29 13:03:06 +02:00
debris
100d1c7bf6
make triedbmut lookup shorter
2017-08-29 12:31:40 +02:00
debris
e390e6b0af
Merge branch 'master' into trie_recursion
2017-08-29 12:23:37 +02:00
Robert Habermeier
96e9a73a1b
Merge pull request #6408 from paritytech/txqueue
...
Don't accept transactions above block gas limit.
2017-08-29 12:13:16 +02:00
Jaco Greeff
c2f0778e80
Merge branch 'master' into ui-2
2017-08-29 11:58:53 +02:00
Jaco Greeff
39cf190db7
Update dependencies
2017-08-29 10:50:47 +02:00
Tomasz Drwięga
b8e6799d67
Don't accept transactions above block gas limit.
2017-08-29 10:50:13 +02:00
Jaco Greeff
2a0820278b
Update
2017-08-29 10:18:02 +02:00
Marek Kotewicz
e7cc0477fb
Merge pull request #6399 from paritytech/evm-trace-fix
...
Fix memory tracing.
2017-08-28 18:53:22 +02:00
Marek Kotewicz
17fa7edbbf
Merge pull request #6393 from paritytech/earlymergedb_optimizations
...
earlydb optimizations
2017-08-28 18:46:41 +02:00
Marek Kotewicz
c6b3faca64
Merge pull request #6321 from paritytech/plain_hasher
...
Optimized PlainHasher hashing. Trie insertions are >15% faster
2017-08-28 18:46:04 +02:00
Marek Kotewicz
8ead8061ee
Merge pull request #6389 from paritytech/trie
...
Trie optimizations
2017-08-28 18:45:30 +02:00
Marek Kotewicz
bf68c87a08
Merge pull request #6392 from paritytech/triehash
...
small optimizations for triehash
2017-08-28 18:44:47 +02:00
Tomasz Drwięga
d90ec3d192
Bring back IPFS tests. ( #6398 )
2017-08-28 15:22:59 +02:00
debris
322da07010
Merge branch 'master' into trie
2017-08-28 15:08:22 +02:00
debris
8019d222a7
fixed TrieDb::seek accordingly to review suggestions
2017-08-28 15:08:16 +02:00
Tomasz Drwięga
f9a08e285c
Running state test using parity-evm ( #6355 )
...
* Initial version of state tests.
* Refactor state to support tracing.
* Unify TransactResult.
* Add test.
2017-08-28 14:25:16 +02:00
Nikolay Volf
abecd80f54
Wasm math tests extended ( #6354 )
...
* extend math tests
* use latest wasm-tests
* cleanup
* avoid overflow
* use correct gas-
* and division
2017-08-28 14:12:40 +02:00
Tomasz Drwięga
3226e1ca33
Expose health status over RPC ( #6274 )
...
* Node-health to a separate crate.
* Initialize node_health outside of dapps.
* Expose health over RPC.
* Bring back 412 and fix JS.
* Add health to workspace and tests.
* Fix compilation without default features.
* Fix borked merge.
* Revert to generics to avoid virtual calls.
* Fix node-health tests.
* Add missing trailing comma.
2017-08-28 14:11:55 +02:00
debris
752dad6829
commit plain_hasher to util
2017-08-28 12:40:29 +02:00
Tomasz Drwięga
4f69ee0437
Add test to cover that.
2017-08-28 12:32:19 +02:00
debris
e0c2995f78
Merge branch 'master' into plain_hasher
2017-08-28 12:30:05 +02:00
Jaco Greeff
1b0efa97b2
Merge branch 'master' into ui-2
2017-08-28 10:09:54 +02:00
Hawstein
622632616c
fix bloom bitvecjournal storage allocation ( #6390 )
2017-08-28 09:19:04 +02:00
debris
4ac95b44e2
earlydb optimizations
2017-08-27 18:17:55 +02:00
debris
9cb4c99e5b
removed triedbmut recursion
2017-08-27 17:33:03 +02:00
debris
301a4720b7
small optimizations for triehash
2017-08-27 16:50:22 +02:00
Marek Kotewicz
15c3233376
Merge pull request #6391 from paritytech/pending_panic
...
fixed pending block panic
2017-08-27 14:46:49 +02:00
debris
faf0428b60
fixed pending block panic, closes #6239
2017-08-27 13:10:08 +02:00
Tomasz Drwięga
dd3b6d49ee
Fix memory tracing.
2017-08-26 21:53:41 +02:00
debris
7246c9c74b
removed redundant *
2017-08-26 19:16:08 +02:00
debris
5395f13528
optimized hashdb keys
2017-08-26 19:09:32 +02:00
debris
9083923f27
optimized memorydb insert, remove and emplace
2017-08-26 18:34:16 +02:00
debris
5d6c53c9bd
triedb seek and descend is not recursive
2017-08-26 18:33:43 +02:00
Jaco Greeff
7438cfc47d
Merge branch 'master' into ui-2
2017-08-25 12:14:56 +02:00
GitLab Build Bot
b6024adf85
[ci skip] js-precompiled 20170825-090654
2017-08-25 09:11:39 +00:00
Jon Choi
5b6d47aeef
Infoline less opaque for UI/visibility ( #6364 )
2017-08-25 16:31:48 +08:00
Robert Habermeier
c79ecee094
only load ancestry from chain closure in engine
2017-08-24 16:29:31 +02:00
Robert Habermeier
b953f9b66a
glue for fetching epoch proofs from network
2017-08-24 15:17:48 +02:00
Jaco Greeff
10a7750027
Merge branch 'master' into ui-2
2017-08-24 13:49:34 +02:00
Tomasz Drwięga
5c0f9f1c40
Fix eth_call. ( #6365 )
...
* Fix eth_call.
* Fix warning spam.
2017-08-24 13:13:01 +02:00
Jaco Greeff
d97f6b3812
Add @parity/jsonrpc explicitly
2017-08-24 13:07:22 +02:00
Jaco Greeff
3e08829c39
Merge branch 'master' into ui-2
2017-08-24 12:02:23 +02:00
Jaco Greeff
ae66b98aac
Update dependencies
2017-08-24 12:01:47 +02:00
Robert Habermeier
871a9c063e
Merge branch 'master' into light-poa
2017-08-23 15:49:02 +02:00
Robert Habermeier
2ff3dff6ea
serve epoch signals over network and check them
2017-08-23 15:37:35 +02:00
Marek Kotewicz
4bda7bf175
updated bigint ( #6341 )
2017-08-22 17:05:28 +02:00
Jaco Greeff
21e8c31aec
Update dependencies
2017-08-22 16:51:40 +02:00
Jaco Greeff
630118b5a5
Merge branch 'master' into ui-2
2017-08-22 15:12:30 +02:00
Robert Habermeier
7f3e718851
EngineClient implementation for light client
2017-08-22 21:02:40 +08:00
Marek Kotewicz
5dac15fa85
Merge pull request #6347 from paritytech/trieiter
...
Optimize trie iter by avoiding redundant copying
2017-08-22 11:26:25 +02:00
Marek Kotewicz
6e8f97667a
Merge pull request #6346 from paritytech/a5-rocksdb-logging
...
Only keep a single rocksdb debug log file
2017-08-22 11:26:06 +02:00
Arkadiy Paronyan
d41dd13918
Tweaked snapshot params ( #6344 )
2017-08-22 11:24:56 +02:00
Robert Habermeier
b4d3f78d67
Merge pull request #6345 from paritytech/networkid
...
Rename network_id to chain_id where applicable.
2017-08-22 17:01:23 +08:00
Robert Habermeier
9ae2ed39ec
only use engineclient trait for engines, separated from client trait
2017-08-22 16:00:44 +08:00
debris
6c00dc71c1
Optimize trie iter by avoiding redundant copying
2017-08-21 18:35:39 +02:00
Marek Kotewicz
6f03c2bfd1
Merge pull request #6322 from paritytech/itertools
...
Itertools are no longer reexported from util, optimized triedb iter
2017-08-21 15:58:46 +02:00
5chdn
98f86d553a
Only keep a single debug log file, ref #1100
2017-08-21 15:33:31 +02:00
debris
10914c8346
avoid runtime underflow if nibbles are empty
2017-08-21 14:36:59 +02:00
Tomasz Drwięga
73644adf69
Rename network_id to chain_id where applicable.
2017-08-21 14:23:10 +02:00
GitLab Build Bot
f3e7d7c725
[ci skip] js-precompiled 20170821-094253
2017-08-21 09:48:30 +00:00
Robert Habermeier
2985561012
detect epoch changes in light client
2017-08-21 18:31:25 +09:00
Marek Kotewicz
e8841ae9e2
Merge pull request #6331 from paritytech/fix-startup-wizard
...
Better check the created accounts before showing Startup Wizard
2017-08-21 10:44:54 +02:00
debris
b68375d462
less unsafe code
2017-08-21 10:19:53 +02:00
debris
a247d5b2dc
Merge branch 'master' into itertools
2017-08-21 09:12:36 +02:00
Tomasz Drwięga
f79159a69c
Improve some RPC error messages. ( #6311 )
2017-08-20 12:13:00 +08:00
cdetrio
4ccc82be92
fix panic in parity-evm json tracer ( #6338 )
2017-08-20 12:03:47 +08:00
Nikolay Volf
9e4c122cf3
WASM math test ( #6305 )
...
* wasm tests initial
* fix bug in bitswap
2017-08-20 12:02:59 +08:00
Marek Kotewicz
407c8c3fb9
rlp_derive ( #6125 )
...
* rlp_derive
* RlpEncodableWrapper, RlpDecodableWrapper
* use rlp_derive in parity
* fixed broken transaction Action serialization
2017-08-20 12:01:46 +08:00
Robert Habermeier
6ab0fc4e14
epoch transitions in the header chain DB
2017-08-19 17:07:31 +09:00
Tomasz Drwięga
5ed14c1064
Fix --chain parsing in evmbin. ( #6314 )
2017-08-18 17:44:40 +02:00
GitLab Build Bot
2c0a1b652c
[ci skip] js-precompiled 20170818-143526
2017-08-18 14:40:04 +00:00
Tomasz Drwięga
010be34660
Unexpose methods on UI RPC. ( #6295 )
2017-08-18 15:58:45 +02:00
Tomasz Drwięga
cd0c77dc5c
Ignore errors from dappsUrl when starting UI. ( #6296 )
...
* Ignore errors from dappsUrl when starting UI.
* Fix linter.
2017-08-18 15:51:52 +02:00
Nicolas Gotchac
444233bd1b
Better check the created accounts before showing Startup Wizard
2017-08-18 15:28:41 +02:00
debris
7de4a3a2df
move plain hasher to a crate
2017-08-17 20:40:10 +02:00
Marek Kotewicz
2129edaae9
Merge pull request #6323 from paritytech/updated_bigint
...
updated bigint with optimized mul and from_big_indian
2017-08-17 19:09:03 +02:00
debris
209e8eff35
updated bigint with optimized mul and from_big_indian
2017-08-17 18:11:34 +02:00
debris
32d2cd74d4
ping ci
2017-08-17 17:35:00 +02:00
debris
4cb610d9ae
Itertools are no longer reexported from util, optimized triedb iter
2017-08-17 16:05:26 +02:00
debris
697d17ae9b
Optimized PlainHasher hashing
2017-08-17 14:59:43 +02:00
Robert Habermeier
fefc756870
Merge pull request #6168 from paritytech/secretstore_stresstest
...
SecretStore: bunch of fixes and improvements
2017-08-16 21:20:22 +09:00
Afri
febf774b4e
Master requires rust 1.19 ( #6308 )
2017-08-16 12:24:42 +02:00
Svyatoslav Nikolsky
a02db13278
moved attributes under docs
2017-08-16 09:40:00 +03:00
Robert Habermeier
f19911660d
Merge pull request #6302 from paritytech/ledger-sign
...
Add more descriptive error when signing/decrypting using hw wallet.
2017-08-16 05:55:28 +02:00
Robert Habermeier
d5252ddf64
Merge pull request #6299 from paritytech/callgas
...
Increase default gas limit for eth_call.
2017-08-16 05:55:16 +02:00
Tomasz Drwięga
67a07adb0b
Add more descriptive error when signing/decrypting using hw wallet.
2017-08-15 12:11:34 +02:00
Tomasz Drwięga
5ff771b125
Cap gas limit for dapp-originating requests.
2017-08-15 10:38:49 +02:00
Tomasz Drwięga
a34bea1dad
Fix balance increase.
2017-08-15 10:07:00 +02:00
Robert Habermeier
1e269c94a6
prove_transaction function on state
2017-08-15 00:12:40 +02:00
Tomasz Drwięga
60f6a3fed3
Increase default gas limit for eth_call.
2017-08-14 16:59:46 +02:00
Marek Kotewicz
b9c1d0bd18
rust-toolchain file on master ( #6266 )
2017-08-14 13:47:53 +02:00
Nikolay Volf
4ab607d4de
wasm-std refactoring ( #6278 )
2017-08-14 12:33:52 +03:00
GitLab Build Bot
d115006597
[ci skip] js-precompiled 20170813-184308
2017-08-13 18:48:32 +00:00
Tomasz Drwięga
10068cee72
Extension fixes ( #6284 )
...
* Fix token symbols in extension.
* Allow connections from firefox extension.
2017-08-13 17:41:50 +02:00
Tomasz Drwięga
b5b6e3dd2a
Fix a hash displayed in tooltip when signing arbitrary data ( #6283 )
...
* Allow connections from firefox extension.
* Displaying actual data that will be signed on hover.
* Display a tooltip.
* Revert "Allow connections from firefox extension."
This reverts commit d3323b76fe28564c2366ceec3d891de19884192f.
2017-08-13 17:41:08 +02:00
Jaco Greeff
f0e20142af
Rebuild
2017-08-11 03:19:28 +02:00
Tomasz Drwięga
604ea5d684
Time should not contribue to overall status. ( #6276 )
2017-08-10 18:48:03 +02:00
Tomasz Drwięga
146feea4a6
Add --to and --gas-price ( #6277 )
2017-08-10 18:47:23 +02:00
Tomasz Drwięga
65482c5e9d
Fix dapps CSP when UI is exposed externally ( #6178 )
...
* Allow embeding on any page when ui-hosts=all and fix dev_ui
* Fix tests.
2017-08-10 18:32:10 +02:00
Anton Gavrilov
bfd238e000
Style fixed after review
2017-08-10 12:36:29 +02:00
GitLab Build Bot
ecd880c8e7
[ci skip] js-precompiled 20170810-101054
2017-08-10 10:16:01 +00:00
Tomasz Drwięga
30be0972b9
Add warning to web browser and fix links. ( #6232 )
2017-08-10 11:16:02 +02:00
GitLab Build Bot
b21932687a
[ci skip] js-precompiled 20170809-182421
2017-08-09 18:29:28 +00:00
Björn Wagner
e128285a77
Replace 'home.parity' with 'parity.web3.site' ( #4771 )
2017-08-09 19:07:15 +02:00
Craig O'Connor
7d17d77254
Dapp refresh ( #5752 )
...
* RwLock
* getting there
* argh
* parking_lot
* rpc
* wax on wax off
* almost there
* remove lock
* write over read
* works
* linting
* small updates
* dissapearing act
* router update
* complete
* one m
* grumbles1
* grumbles part II
* parking_lot->util
* missed test case
* fied package-lock.json
* small fixes
* 404 tests failing
* cleanup
* cleanup 2
* updates and the likes
* play
* simplify filter
* f-ing bugs
* read->write
* Address own grumbles.
* Fix test.
2017-08-09 19:06:40 +02:00
Nicolas Gotchac
d6eb053826
Add support for ConsenSys multisig wallet ( #6153 )
...
* First draft of ConsenSys wallet
* Fix transfer store // WIP Consensys Wallet
* Rename walletABI JSON file
* Fix linting
* Fix wrong daylimit in wallet modal
* Confirm/Revoke ConsensysWallet txs
* Linting
* Change of settings for the Multisig Wallet
2017-08-09 19:06:14 +02:00
Svyatoslav Nikolsky
cc95edf4dc
fixed grumbles
2017-08-09 18:17:28 +03:00
Marek Kotewicz
a8a11e56db
updated jsonrpc ( #6264 )
2017-08-09 17:40:52 +03:00
Jaco Greeff
039729a074
Export default function for shellMiddleware
2017-08-09 13:17:52 +02:00
Jaco Greeff
4176936d34
Move shell APIs to middleware
2017-08-09 13:03:26 +02:00
Svyatoslav Nikolsky
45087599ef
lost commit
2017-08-09 12:33:41 +03:00
Svyatoslav Nikolsky
9b34c77f98
Merge branch 'master' into secretstore_stresstest
2017-08-09 12:29:29 +03:00
Svyatoslav Nikolsky
33ba5b63f3
SecretStore: encrypt messages using private key from key store ( #6146 )
...
* do not cache ACL storage contract
* when error comes before initialization
* initial KeyServerSet commit
* update_nodes_set in maintain
* do not connect to self
* fixed connection establishing
* removed println
* improved KeyServerSet tracing
* moved parsing to KeyServerSet
* re-read only when blockchain is changed
* do not try to connect if not a part of cluster
* improved logging
* fixed tests
* NodeKeyPAir trait
* fixed parity to use new trait
* continue integrating with parity
* updated parity for NodeKeyPair
* completed KeyStoreNodeKeyPair
* removed comment
* removed dependency && style
2017-08-09 11:09:40 +02:00
Jaco Greeff
f967bc4ac0
Don't mask top-level params
2017-08-09 11:01:34 +02:00
Alexey
d209100a60
Wasm storage read test ( #6255 )
...
* Test for read from prepopulated storage implemented
* wasm-tests submodule update
* fix identation
* comment for storage_read added
2017-08-09 10:57:54 +02:00
Marek Kotewicz
78b3d71745
propagate stratum submit share error upstream, fixes #6258 ( #6260 )
2017-08-09 10:57:23 +02:00
Jaco Greeff
2d5541f533
Add shell_loadApp API
2017-08-09 10:55:15 +02:00
Jaco Greeff
9aae4614a1
Update with latest package versions
2017-08-09 09:43:02 +02:00
Jaco Greeff
317addb7e3
Remove ~ alias
2017-08-09 09:36:40 +02:00
Jaco Greeff
a11e9acd12
Merge branch 'master' into ui-2
2017-08-09 09:32:22 +02:00
Tomasz Drwięga
e93466c897
Using multiple NTP servers ( #6173 )
...
* Small improvements to time estimation.
* Allow multiple NTP servers to be used.
* Removing boxing.
* Be nice.
* Be nicer.
* Update list of servers and add reference.
2017-08-09 08:45:07 +02:00
Afri
72fa6a79a2
Add GitHub issue templates. ( #6259 )
...
* Prepare GH templates for contributors
* Add GH issue template
* Add homebrew as option
2017-08-09 08:43:40 +02:00
Marek Kotewicz
e7a7bd6695
Merge pull request #6241 from paritytech/poa-proof-fix
...
format instant change proofs correctly
2017-08-08 20:58:26 +02:00
Marek Kotewicz
80db43442e
Merge pull request #6231 from paritytech/price_info_util
...
price-info does not depend on util
2017-08-08 20:56:12 +02:00
Marek Kotewicz
f2929f3b19
Merge pull request #6233 from paritytech/native_contracts_util
...
native-contracts crate does not depend on util any more
2017-08-08 20:55:36 +02:00
Afri
afbda7baa8
Bump master to 1.8.0 ( #6256 )
...
* Bump master to 1.8.0
* Use jsonrpc-core to avoid breaking master
* Update Cargo.lock
2017-08-08 20:18:00 +02:00
Svyatoslav Nikolsky
872e5537bb
SecretStore: do not cache ACL contract + on-chain key servers configuration ( #6107 )
...
* do not cache ACL storage contract
* when error comes before initialization
* initial KeyServerSet commit
* update_nodes_set in maintain
* do not connect to self
* fixed connection establishing
* removed println
* improved KeyServerSet tracing
* moved parsing to KeyServerSet
* re-read only when blockchain is changed
* do not try to connect if not a part of cluster
* improved logging
* fixed tests
2017-08-07 18:54:05 +02:00
Afri
a20892e5e6
Fix the README badges ( #6229 )
...
* Update README.md
* Set latest release to 1.7
2017-08-07 18:12:00 +02:00
Jaco Greeff
b0228e66a0
Update/rebuild after merge
2017-08-07 12:27:10 +02:00
Jaco Greeff
a48f321fac
Merge branch 'master' into ui-2
2017-08-07 12:02:39 +02:00
GitLab Build Bot
67ccfa1da1
[ci skip] js-precompiled 20170807-093816
2017-08-07 09:43:01 +00:00
Marek Kotewicz
bdeea80032
Merge pull request #6248 from paritytech/tiny_keccak_up
...
updated tiny-keccak to 1.3
2017-08-07 10:58:36 +02:00
Jaco Greeff
0371dcb7bd
Explicityly serve via /index.html
2017-08-07 10:20:27 +02:00
debris
455ecf700c
updated tiny-keccak to 1.3
2017-08-07 10:06:02 +02:00
GitLab Build Bot
82f90085ee
[ci skip] js-precompiled 20170807-004826
2017-08-07 00:53:11 +00:00
Robert Habermeier
66ab102111
Merge pull request #6244 from pietervdvn/master
...
Small grammatical error
2017-08-07 02:15:06 +02:00
Pieter Vander Vennet
2adc25eec7
Merge pull request #1 from pietervdvn/pietervdvn-patch-1
...
Fixed typo (s/seems is/seems)
2017-08-06 18:35:19 +02:00
Pieter Vander Vennet
ee07bf29ce
Fixed typo (s/seems is/seems)
2017-08-06 18:33:54 +02:00
Robert Habermeier
e43b1084c3
format instant change proofs correctly
2017-08-04 21:43:31 +02:00
Jaco Greeff
28e2383778
Update build
2017-08-04 16:23:54 +02:00
Anton Gavrilov
dd91121017
Common method for tracing refactored due to comments on review
2017-08-04 16:06:12 +02:00
Jaco Greeff
b7ebfab575
Allow webpack to parse modules
2017-08-04 15:58:33 +02:00
Tomasz Drwięga
f157461ee1
Multi-call RPC ( #6195 )
...
* Removing duplicated pending state accessors in miner.
* Merge miner+client call.
* Multicall & multicall RPC.
* Sensible defaults.
* Fix tests.
2017-08-04 15:58:14 +02:00
debris
35bfbc39f8
native-contracts crate does not depend on util any more
2017-08-04 15:45:47 +02:00
Jaco Greeff
49a4499d52
Update webpack
2017-08-04 14:28:55 +02:00
debris
7ddfd2f030
revert fetch is_success changes
2017-08-04 14:12:27 +02:00
Jaco Greeff
44a7c3d0b6
Re-add modules path
2017-08-04 13:50:51 +02:00
Jaco Greeff
1bf851ad91
Really excluse node_modules
2017-08-04 13:44:38 +02:00
debris
f72196f1bb
a bit more idiomatic price-info
2017-08-04 13:39:57 +02:00
Jaco Greeff
2df7a5fe51
Cheap source-maps for development
2017-08-04 13:26:56 +02:00
Jaco Greeff
0892bc90ed
Update sourcemap types
2017-08-04 13:24:03 +02:00
debris
63f8cc3503
price-info does not depend on util
2017-08-04 13:06:01 +02:00
Marek Kotewicz
62153b1ff0
Merge pull request #6223 from paritytech/instant_seal_fix
...
InstantSeal fix
2017-08-04 12:47:05 +02:00
Jaco Greeff
c088a9a660
Update dependencies
2017-08-04 11:57:05 +02:00
Anton Gavrilov
655ed93ee8
Common engine method for bestowing rewards created
2017-08-04 11:28:26 +02:00
Robert Habermeier
ae9f35668e
Merge pull request #6227 from paritytech/rlp-check
...
Untrusted RLP length overflow check
2017-08-03 21:20:38 +02:00
NikVolf
d30e47a50e
add test
2017-08-03 21:49:40 +03:00
NikVolf
6b3f5c977a
overflow check in addition
2017-08-03 21:35:51 +03:00
Robert Habermeier
0abf2abc81
checking for signals in the light client
2017-08-03 18:18:19 +02:00
Jaco Greeff
e7641e38d8
Update build
2017-08-03 16:50:35 +02:00
debris
b0f9d73f6a
InstantSeal fix
2017-08-03 16:42:56 +02:00
Anton Gavrilov
30434325a2
Modification of traces moved to engines
2017-08-03 15:55:58 +02:00
Jaco Greeff
34f9e69bff
Update file-loader
2017-08-03 13:30:17 +02:00
Anton Gavrilov
01a02a8985
Wasm test link changed
2017-08-02 19:02:01 +02:00
Jaco Greeff
e99f86a052
Update locked versions
2017-08-02 17:54:21 +02:00
Jaco Greeff
f94f69c05c
Import UI components directly
2017-08-02 17:34:16 +02:00
Anton Gavrilov
01ea968d4f
Merge with master
2017-08-02 17:24:34 +02:00
Jaco Greeff
696089c479
Update with latest dapps
2017-08-02 17:16:26 +02:00
Anton Gavrilov
2e840bc89c
Fixed comments after the review
2017-08-02 17:10:06 +02:00
Jaco Greeff
45f91facf1
Don't copy source window
2017-08-02 13:56:09 +02:00
Marek Kotewicz
0c7c34e609
Chainspec validation ( #6197 )
...
* chainspec validation
* better error formatting for chainspec
* lint validate_chainspecs.sh
* quit takes &str instead of S: AsRef<str>
* push CI
* don't double check spec validity
2017-08-02 12:50:36 +02:00
Tomasz Drwięga
8de1e92b99
Fix cache path when using --base-path ( #6212 )
2017-08-02 12:38:58 +02:00
Jaco Greeff
ffd53edf89
Update build
2017-08-02 11:15:36 +02:00
Svyatoslav Nikolsky
47c058a337
fixed warning
2017-08-02 12:05:47 +03:00
Jaco Greeff
0a3a860b27
Add dapp-develop
2017-08-02 10:02:53 +02:00
Jaco Greeff
cbd32035c8
Cleanup webpack config
2017-08-02 08:44:56 +02:00
Jaco Greeff
aa95c09a88
Re-add happypack for babel builds
2017-08-01 18:11:35 +02:00
GitLab Build Bot
191f409741
[ci skip] js-precompiled 20170801-155944
2017-08-01 16:06:06 +00:00
Jaco Greeff
34a8daa629
Add addresses dapp
2017-08-01 17:42:04 +02:00
Jaco Greeff
1d96ba7dfc
Update
2017-08-01 17:35:17 +02:00
Marek Kotewicz
b24053f4df
Merge pull request #6187 from paritytech/split
...
removed std reexports from util && fixed broken tests
2017-08-01 17:19:02 +02:00
debris
7f85c0ce2a
Fixed evmbin
2017-08-01 16:41:33 +02:00
Jaco Greeff
3006ab9253
Updated with working accounts
2017-08-01 16:07:35 +02:00
debris
af8c5bb31a
fix for util on linux
2017-08-01 15:53:50 +02:00
Jaco Greeff
67db54d765
Update webpack config for semantic
2017-08-01 15:51:03 +02:00
Jaco Greeff
dea25b194e
Update build (yes, external dapps launch)
2017-08-01 15:36:32 +02:00
Jaco Greeff
9b678a58e8
Use serviceWorker from shared
2017-08-01 15:05:44 +02:00
Jaco Greeff
52828c0444
Update inject
2017-08-01 15:04:07 +02:00
Jaco Greeff
f8bf4a1522
Update build to pull from external repos
2017-08-01 14:41:13 +02:00
debris
a2c05123fd
Merge branch 'master' into split
2017-08-01 14:24:47 +02:00
Marek Kotewicz
5b0eeb75ef
Merge pull request #6132 from paritytech/wasm-mvp
...
WASM MVP continued
2017-08-01 14:08:58 +02:00
NikVolf
d82c2c8cc6
add targets to the CI
2017-08-01 14:42:31 +03:00
NikVolf
c1108da6e9
fixed wasm tests
2017-08-01 14:35:43 +03:00
NikVolf
017430e803
fixed evm tests
2017-08-01 14:33:49 +03:00
Jaco Greeff
c509733a30
Split all packages/* to external repos
2017-08-01 12:51:41 +02:00
Nikolay Volf
b7006034b1
Decouple virtual machines ( #6184 )
...
* work in progress for splitting vms
* evm working
* Evm -> Vm
* wasm converted
* ethcore working
* test fixes
2017-08-01 13:37:57 +03:00
debris
6e5a563c06
fixed scripts and reverted ipfs comment
2017-08-01 12:32:34 +02:00
Marek Kotewicz
c4025622de
Merge pull request #6177 from paritytech/wasm-realloc-test
...
Realloc test added
2017-08-01 11:04:59 +02:00
Jaco Greeff
b5f4c40406
Re-add webpack-dev-server
2017-08-01 08:12:21 +02:00
Jaco Greeff
317a59d550
Build update
2017-08-01 08:02:28 +02:00
GitLab Build Bot
a6891e9f9f
[ci skip] js-precompiled 20170731-215156
2017-07-31 21:57:18 +00:00
Jaco Greeff
0e7c115b73
Update build
2017-07-31 22:53:29 +02:00
debris
bfbeda4ede
fixed tests
2017-07-31 20:17:19 +02:00
debris
3c7ba5045d
Merge branch 'master' into split
2017-07-31 19:40:33 +02:00
Maciej Hirsz
46126b5fb6
Merge pull request #6196 from paritytech/mh-pubnode-extacc
...
Re-enable wallets, fixed forgetting accounts
2017-07-31 18:14:50 +02:00
Anton Gavrilov
141c2fd34a
Fixed comments after review and test after rebase
2017-07-31 18:10:06 +02:00
Jaco Greeff
0b71baac4a
Remove embed (for now)
2017-07-31 17:56:33 +02:00
maciejhirsz
2ca4adb62c
Re-enable wallets, fixed forgetting accounts
2017-07-31 17:51:23 +02:00
Jaco Greeff
7f6e2a3a35
Build with parallel-webpack
2017-07-31 17:08:51 +02:00
debris
81b57ceddb
Merge branch 'master' into split
2017-07-31 16:19:59 +02:00
fro
fe6bdc870c
realloc test contract submodule update
2017-07-31 16:54:26 +03:00
Jaco Greeff
fdebeaf95b
Update webpack
2017-07-31 13:58:18 +02:00
Anton Gavrilov
8826fdb03a
Merge with head
2017-07-31 13:49:44 +02:00
Anton Gavrilov
e8095826bf
Tabs corrected
2017-07-31 13:42:40 +02:00
Anton Gavrilov
9374e31072
Miner field renamed to author
2017-07-31 13:42:40 +02:00
Anton Gavrilov
1a3f3ffdbf
Transaction ids made optional in order to reflect not transactional traces
2017-07-31 13:42:40 +02:00
Anton Gavrilov
45043c3f52
Fixed errors after merge with master
2017-07-31 13:42:40 +02:00
Anton Gavrilov
f2d12aebef
Unit tests for tracing reward added
2017-07-31 13:42:40 +02:00
Anton Gavrilov
3fdb912db6
Complete version of tracing test with reward
2017-07-31 13:42:40 +02:00
Anton Gavrilov
5086dc3024
Working test with block reward added
2017-07-31 13:42:34 +02:00
Anton Gavrilov
204a63a00e
Warnings removed
2017-07-31 13:40:45 +02:00
Anton Gavrilov
06862c7dee
Tracing for rewards added. Without tests for now
2017-07-31 13:40:37 +02:00
Robert Habermeier
003eef982b
Move more params to the common section. ( #6134 )
...
* move common forks and parameters to common params
* port specs over to new format
* fix RPC tests
2017-07-31 12:34:29 +02:00
Anton Gavrilov
bb043ba2fd
Tabs corrected
2017-07-31 12:23:47 +02:00
Anton Gavrilov
94efa3ac19
Miner field renamed to author
2017-07-31 12:06:38 +02:00
Jaco Greeff
58c3948316
Remove extra options
2017-07-31 12:06:21 +02:00
Jaco Greeff
ec62d6f7e0
Additional compose removed
2017-07-31 11:30:46 +02:00
Jaco Greeff
6a51ff22d0
Cleanup unused vars
2017-07-31 11:24:54 +02:00
Jaco Greeff
6349da22ac
Fix NODE_ENV=production build
2017-07-31 11:24:25 +02:00
kaikun213
9c5ef1f776
Merge pull request #6161 from paritytech/whisper-js
...
Whisper js
2017-07-31 11:23:52 +02:00
kaikun213
32fafd7a24
CI fix: Interface shh subscribe params
2017-07-31 10:58:49 +02:00
debris
88cc4cd17a
Merge branch 'master' into split
2017-07-29 23:44:55 +02:00
debris
48f28fe29c
fixed json_tests
2017-07-29 23:19:33 +02:00
debris
2b02651bbf
alway test --all (temporary exclude ipfs and evmjit)
2017-07-29 22:54:04 +02:00
debris
c4989ddc44
removed util::common
2017-07-29 22:49:10 +02:00
debris
eecd823d32
util reexports less std
2017-07-29 21:10:14 +02:00
Robert Habermeier
fbb9affadb
Merge pull request #6185 from Grix/master
...
typo in uninstaller
2017-07-29 18:59:47 +02:00
Gitle Mikkelsen
9f0bfa01ca
typo in uninstaller
2017-07-28 23:18:02 +02:00
Robert Habermeier
2bd5c3dba7
checking proofs in safe contract
2017-07-28 19:38:52 +02:00
Nicolas Ochem
f212ae6322
fix #6052 . honor --no-color for signer command ( #6100 )
...
* fix #6052 . honor --no-color for signer command
* replace call to paint closure with the body, apply to generate_new_token too
2017-07-28 19:07:38 +02:00
Joseph Mark
b5f1524e78
Refactor --allow-ips to handle custom ip-ranges ( #6144 )
...
* Add checks for additional reserved ip addresses
100.64.0.0/10 and 240.0.0.0/4 are both reserved but not currently
filtered.
* Add check for special purpose addresses
192.0.0.0/24 - Used for the IANA IPv4 Special Purpose Address Registry
* Refactor ip_utils (#5872 )
* Add checks for all ipv4 special use addresses
* Add comprehensive ipv4 test cases
* Refactor Ipv6 address checks (#5872 )
* Refactor AllowIP (#5872 )
* Add IpFilter struct to wrap predefined filter (AllowIP) with custom
allow/block filters.
* Refactor parsing of --allow-ips to handle custom filters.
* Move AllowIP/IpFilter from ethsync to ethcore-network where they
are used.
* Revert Cargo.lock
* Tests for custom ip filters (#5872 )
* Add "none" as a valid argument for --allow-ips to allow narrow
custom ranges, eg.: --allow-ips="none 10.0.0.0/8"
* Add tests for parsing filter arguments and node endpoints.
* Add ipnetwork crate to dev dependencies for testing.
* Add ipv6 filter tests (#5872 )
* Revert parity-ui-precompiled to master
* Fix minor detail in usage.txt (#5872 )
* Spaces to tabs
* Rename IpFilter::new() to ::default()
* Small readability improvements
* Test (#5872 )
* Revert "Test (#5872 )"
This reverts commit 7a8906430a6dad633fe29df3dca57f1630851fa9.
2017-07-28 19:06:39 +02:00
Afri
ad30a6899b
Update Changelog for 1.6.10 and 1.7.0 ( #6183 )
...
* Update changelog for 1.6.10
* Update changelog for 1.7.0
* Move 1.7.0 to top
* Rephrase contract warp
* Update final 1.7.0 changelog
* Update beta backports in Changelog
2017-07-28 18:15:04 +02:00
Jaco Greeff
abb62d5c2a
Ui 2 parity build fixes ( #6182 )
...
* Update API reference
* Deprecation warning
* Add missing parity-reactive-ui
* Add dapps to packages/dapps
* Add parity.js dependency
* Update with js-ui with compiled bundle.js
2017-07-28 17:56:48 +02:00
fro
e234b7fdbf
realloc test added
2017-07-28 16:38:03 +03:00
Jaco Greeff
4000ec681f
Ui 2 js build fixes ( #6176 )
...
* Update API reference
* Deprecation warning
* Add missing parity-reactive-ui
* Add dapps to packages/dapps
* Add parity.js dependency
2017-07-28 15:37:58 +02:00
Jef
e84f308264
Fix unsoundness in ethash's unsafe code ( #6140 )
...
* Fix benchmarks
* Fix unsoundness in uses of unsafety
* Remove most uses of unsafe indexing and ptr::copy_nonoverlapping
This commit also includes a completely absurd optimisation that I
promise is an honest win. You can check the benchmarks, I barely
believe it myself.
* Add safety comment
* Add more safety comments
2017-07-28 14:26:22 +02:00
Anton Gavrilov
1f3f91136c
Transaction ids made optional in order to reflect not transactional traces
2017-07-28 13:41:51 +02:00
kaikun213
e70d5c52e4
Updated semantic-ui-react version (js-ui)
2017-07-28 11:51:59 +02:00
Jaco Greeff
a1b8fabd99
Ui 2 packages ( #6169 )
...
* Ensure all internal dapps have package.json
* Update compilation rules
# Conflicts:
# js/src/redux/providers/balancesActions.js
# js/src/ui/Form/TypedInput/typedInput.js
* Remove SignerIcon
* Cleanup providers
* Enable request of new token from app
* Queue when no token (yet)
* Add location & token request
* Cleanup send logic
* Request token
* Request comms token
* Remove yarn.lock (not updated)
* Update version to 1.99.99 (publish prepare)
* Move jsonrpc to seperate repo
* Update jsonrpc references
* Update repo info
* Update repo info
* Additional debugging
* Update repo references
* Move ABI to js-abi repo
* Move webWorker to shared
* Fix package reference
* Worker location
* Move js-ui & js-shared components
* Update file references
* Update package repo locations
* Remove debugging info
* Cleanup debug
* Split api into own repo
* Update api local references
* Update app loading
* Update dependencies
* Allow serving of /parity-utils
* Error when EthereumProvider has not been attached
* Use inject.js
* Correct appId retrieval
2017-07-28 10:25:34 +02:00
Jaco Greeff
5830767273
Add oo7 deps
2017-07-27 20:23:36 +02:00
Anton Gavrilov
b1935340c8
Fixed errors after merge with master
2017-07-27 19:15:25 +02:00
GitLab Build Bot
671ed1b9db
[ci skip] js-precompiled 20170727-163754
2017-07-27 16:42:35 +00:00
Anton Gavrilov
af1fbb39ca
Unit tests for tracing reward added
2017-07-27 18:23:17 +02:00
Anton Gavrilov
53c3b772dd
Complete version of tracing test with reward
2017-07-27 18:21:43 +02:00
Anton Gavrilov
73128039a6
Working test with block reward added
2017-07-27 18:21:36 +02:00
Anton Gavrilov
16f39487ba
Warnings removed
2017-07-27 18:20:11 +02:00
Anton Gavrilov
ab6153853b
Tracing for rewards added. Without tests for now
2017-07-27 18:19:46 +02:00
Jaco Greeff
53bde282bb
Link dapp-develop/account
2017-07-27 18:12:42 +02:00
kaikun213
7a810def28
Shh documentation (jsonrpc interface)
2017-07-27 18:07:25 +02:00
Jaco Greeff
0bdd4a93b8
Add missing dependencies
2017-07-27 17:57:47 +02:00
Jaco Greeff
3e85bebc66
Add missing package dependencies
2017-07-27 17:53:26 +02:00
Tomasz Drwięga
9902714fb4
Don't display an overlay in case the time sync check fails. ( #6164 )
...
* Small improvements to time estimation.
* Temporarily disable NTP time check by default.
2017-07-27 17:36:23 +02:00
Tomasz Drwięga
0209c6e0ff
Fix connecting to wildcard addresses. ( #6167 )
2017-07-27 17:35:05 +02:00
Robert Habermeier
d53028d0a8
Merge pull request #6162 from paritytech/fix-whisper-sub-name
...
fix subscription name
2017-07-27 15:51:47 +02:00
kaikun213
f245d66c8a
shh_subscription added
2017-07-27 15:48:49 +02:00
Jutta Steiner
98e0618750
Update SECURITY.md
2017-07-27 15:46:26 +02:00
Jutta Steiner
2d9a15324d
Including legal disclaimer
2017-07-27 15:44:39 +02:00
Svyatoslav Nikolsky
c345bc3d85
cli option to disable SS ACL check
2017-07-27 15:48:07 +03:00
fro
8238fb37f3
new env exports added
...
___syscall140
___syscall146
___syscall54
_llvm_trap
2017-07-27 15:37:59 +03:00
Robert Habermeier
70ef33f6fe
Light client improvements ( #6156 )
...
* no seal checking
* import command and --no-seal-check for light client
* fix eth_call
* tweak registry dapps lookup
* ignore failed requests to non-server peers
2017-07-27 13:50:12 +02:00
kaikun213
31a0f5ef28
contractDevelop Debugger (Bonds) in progress
2017-07-27 13:24:23 +02:00
kaikun213
e317fcf1d8
accounts.js -> Parity-reactive-ui accountCard
2017-07-27 13:24:00 +02:00
kaikun213
cd0fbbe948
whisper-js
2017-07-27 13:16:56 +02:00
Robert Habermeier
18fbf3c174
only add pubsub if generic pubsub off
2017-07-27 12:55:08 +02:00
Robert Habermeier
1be3e5ec5e
fix subscription name
2017-07-27 12:51:12 +02:00
Svyatoslav Nikolsky
7c05a906d0
cli option to disable SS HTTP API
2017-07-27 13:29:09 +03:00
kaikun213
b13cd0d484
getFilterChanges -> getFilterMessages , subscribe & unsubscribe
...
subscription is currently not working (method not found)
2017-07-27 12:18:07 +02:00
Svyatoslav Nikolsky
c466def1e8
improved logging
2017-07-27 11:33:09 +03:00
Feynman Liang
5eb8cea6e7
Tendermint epoch transitions ( #6085 )
...
* Adds signals_epoch_end to tendermint
* Adds is_epoch_end
* Adds snapshot_components
* Adds tendermint Epoch Verifier
* Fix documentation typos
* Change check_finality_proof to panic
* Fix compilation
* Adds Unconfirmed path to epoch_verifier
* Verify if address is validator in EpochVerifier
* check_finality_proof errors on failure
* Don't share combine/destructure_proofs
* Remove invalid import
* Remove duplicate epoch verifier trait
* Fix docs
* Adds recover stub to tendermint EpochVerifier
* Adds verify_light test
* Avoid boxed closure
* Style fixes
2017-07-26 16:25:32 +01:00
Jaco Greeff
a068f72f08
Ui 2 pubsub components ( #6152 )
...
* Remove Application.orig from merge
* Disable i18n extraction for development
* Retrieve blockNumber via pubsub
* Chain via pubsub
* StatusIndicator with health
* WIP
* WIP
* s/BlockStatus/BlockNumber/
* Adjust BlockNumber display
* Cleanup debug
* Fix statusbar indicator
* NetPeers component
* Add BlockTimestamp
* Export statics on observer
* Cleanup debug logs
* Update references
2017-07-26 16:54:47 +02:00
Robert Habermeier
7d348e2260
light client fixes ( #6148 )
...
* light client fixes
* fix memory-lru-cache
* clear pending reqs on disconnect
2017-07-26 15:48:00 +02:00
Svyatoslav Nikolsky
dcfb8c1a10
fixed generation session lags
2017-07-26 14:09:52 +03:00
Svyatoslav Nikolsky
417a037ac5
improved logging
2017-07-26 14:09:41 +03:00
Jaco Greeff
09e40c2f0d
Upgrade webpack
2017-07-26 12:08:34 +02:00
Jaco Greeff
decc5922de
Fix previous merge
2017-07-26 11:57:14 +02:00
Jaco Greeff
715fb688d3
Merge branch 'master' into ui-2
2017-07-26 11:54:54 +02:00
kaikun213
689993a592
whisper parity.js api
2017-07-25 17:58:52 +02:00
Svyatoslav Nikolsky
4938dfd971
removed comment
2017-07-25 17:57:27 +03:00
Svyatoslav Nikolsky
eb895fbb31
completed KeyStoreNodeKeyPair
2017-07-25 17:54:32 +03:00
Svyatoslav Nikolsky
2e9df2c39d
updated parity for NodeKeyPair
2017-07-25 16:30:24 +03:00
Robert Habermeier
ee1dfb5605
Merge pull request #6044 from paritytech/issues/4673
...
`--config` option handles bundled presets
2017-07-25 13:05:49 +02:00
kaikun213
55bef6ec2f
Merge remote-tracking branch 'origin/master'
2017-07-25 11:13:39 +02:00
Svyatoslav Nikolsky
9e30d85fdc
continue integrating with parity
2017-07-25 10:19:48 +03:00
GitLab Build Bot
aa09cb266d
[ci skip] js-precompiled 20170725-071056
2017-07-25 07:16:04 +00:00
Svyatoslav Nikolsky
fb68b0924a
fixed parity to use new trait
2017-07-25 09:56:23 +03:00
Enrique Fynn
985b0fbf7f
Render correctly when query input is false in a contract ( #6137 )
2017-07-25 08:45:14 +02:00
Nicolas Gotchac
58fec9181f
Filter tokens logs from current block, not genesis ( #6128 )
...
* Filter tokens logs from current block, not genesis
* Fix linting
2017-07-25 08:39:41 +02:00
Gav Wood
0b46cce95f
Deduplicate help text.
2017-07-25 08:38:20 +02:00
Svyatoslav Nikolsky
45f2b82411
NodeKeyPAir trait
2017-07-25 09:24:54 +03:00
Joseph Mark
8b3ec61151
Merge branch 'master' into issues/4673
2017-07-25 09:03:21 +07:00
Joseph Mark
c522f564a9
Update usage doc for --config ( #4673 )
2017-07-25 09:02:37 +07:00
Jaco Greeff
de76b8a465
Merge branch 'master' into ui-2
2017-07-24 17:48:25 +02:00
kaikun213
c894f7ac1f
relocate to packages (+ Tab semantic ui v.7.1)
2017-07-24 17:35:10 +02:00
Evan
78fab4e471
Add a snapcraft badge ( #6135 )
...
Congrats on the snap of Parity! Here's a shiny green build status badge :)
2017-07-24 17:27:27 +02:00
Nikolay Volf
2d6a1160d5
don't return 412 ( #6133 )
2017-07-24 17:26:49 +02:00
NikVolf
5180919e52
wasm mvp continued
2017-07-24 17:45:15 +03:00
kaikun213
381ed505a0
postMessage and store (merge..)
2017-07-24 16:21:54 +02:00
kaikun213
a562f2c434
Merge remote-tracking branch 'origin/ui-2' into ui-2
2017-07-24 16:14:02 +02:00
kaikun213
13b96ae7c8
Pubsub for postMessage Provider (UI2)
...
Proper method-name displaying on request approval is missing
2017-07-24 16:08:24 +02:00
Nikolay Volf
5fb32229f9
bump jsonrpc ( #6129 )
2017-07-24 13:44:42 +02:00
Robert Habermeier
079b24175c
Merge pull request #6080 from Vurich/ethash
...
Unroll loops in light_compute
2017-07-24 13:09:31 +02:00
Svyatoslav Nikolsky
b31b067743
fixed tests
2017-07-24 12:36:31 +03:00
Afri
e33f9c1d11
Changelog for 1.6.9, 1.6.10, and 1.7.0 ( #6075 )
...
* Update CHANGELOG for 1.6.9 stable release.
* [WIP] Prepare CHANGELOG for 1.7.0 beta release.
* Contract warp
* Update changes for 1.7.0
* Update description for 1.7.0 in changelog
* Update Changelog for 1.7.0 beta and 1.6.10 stable
* Address reviews for the Changelog.
* Fix blog URL in changelog.
* Fix typo in Changelog.
* Update changelog for 1.7.0 beta and 1.6.10 stable
2017-07-23 15:18:58 +02:00
Vurich
0fa9c93f6f
Style reungrumble
2017-07-22 14:49:02 +02:00
Robert Habermeier
abe7518424
add security policy ( #6121 )
2017-07-22 07:41:58 +02:00
Joseph Mark
17e6d2d51c
Descriptive error for invalid preset ( #4673 )
2017-07-22 11:09:59 +07:00
Joseph Mark
6ae93cf14e
Roll preset command into --config option ( #4673 )
...
* --config takes either toml file or bundled preset eg. '--config=dev'
* Maintains consistency with --chain arguments
2017-07-22 10:37:38 +07:00
GitLab Build Bot
c72c020182
[ci skip] js-precompiled 20170721-201403
2017-07-21 20:18:51 +00:00
Jaco Greeff
c369bba03b
Fix QR scanner returning null on confirm ( #6122 )
2017-07-21 21:19:38 +02:00
GitLab Build Bot
3605593d37
[ci skip] js-precompiled 20170721-165246
2017-07-21 16:58:58 +00:00
Jaco Greeff
e3a8780da7
Check QR before lowercase ( #6119 )
2017-07-21 18:23:41 +02:00
Robert Habermeier
2d0d7150cc
remove chunk to restore from pending set only upon successful import ( #6112 )
2017-07-21 17:24:53 +02:00
Joseph Mark
ae3dfe9327
Revert Cargo.lock
2017-07-21 21:19:34 +07:00
Jaco Greeff
49fdd23d58
Ui 2 move to packages/* ( #6113 )
...
* Move secureApi to shell
* Extract isTestnet test
* Use mobx + subscriptions for status
* Re-add status indicator
* Add lerna
* Move intial packages to js/packages
* Move 3rdparty/{email,sms}-verification to correct location
* Move package.json & README to library src
* Move tests for library packages
* Move views & dapps to packages
* Move i18n to root
* Move shell to actual src (main app)
* Remove ~ references
* Change ~ to root (explicit imports)
* Finalise convert of ~
* Move views into dapps as well
* Move dapps to packages/
* Fix references
* Update css
* Update test spec locations
* Update tests
* Case fix
* Skip flakey tests
* Update enzyme
* Skip previously ignored tests
* Allow empty api for hw
* Re-add theme for embed
2017-07-21 15:46:53 +02:00
Joseph Mark
db0d20e17b
Update Cargo.lock
2017-07-21 20:30:35 +07:00
Joseph Mark
0ec917e980
Merge branch 'master' into issues/4673
2017-07-21 19:47:14 +07:00
Arkadiy Paronyan
99f4bc76d7
Fix for building with --no-default-features ( #6110 )
2017-07-21 12:14:47 +02:00
Svyatoslav Nikolsky
5fb9652af5
improved logging
2017-07-21 11:25:26 +03:00
Svyatoslav Nikolsky
023e5b4b90
do not try to connect if not a part of cluster
2017-07-21 10:49:10 +03:00
Jaco Greeff
7f3bb37b96
Merge branch 'master' into ui-2
2017-07-21 09:33:05 +02:00
GitLab Build Bot
797e7d98d3
[ci skip] js-precompiled 20170720-175801
2017-07-20 18:02:30 +00:00
Nicolas Gotchac
96ff69e7ef
Update wallet library binaries ( #6108 )
...
* Update wallet library binaries
* Update the links
2017-07-20 19:30:25 +02:00
Robert Habermeier
e7f82cf62e
Merge pull request #5980 from brson/panic-hook
...
Add custom panic hook
2017-07-20 17:11:08 +02:00
Svyatoslav Nikolsky
c94c799347
re-read only when blockchain is changed
2017-07-20 13:28:31 +03:00
Svyatoslav Nikolsky
b9ad093d06
moved parsing to KeyServerSet
2017-07-20 13:15:16 +03:00
Svyatoslav Nikolsky
a35db9f454
improved KeyServerSet tracing
2017-07-20 12:55:52 +03:00
Svyatoslav Nikolsky
9a9c4f6ad6
removed println
2017-07-20 12:25:41 +03:00
Svyatoslav Nikolsky
80b9e931f5
fixed connection establishing
2017-07-20 12:19:29 +03:00
Robert Habermeier
02d462e263
update wallet library modifiers ( #6103 )
2017-07-20 00:02:36 +02:00
GitLab Build Bot
10efc7e2d3
[ci skip] js-precompiled 20170719-205509
2017-07-19 20:59:31 +00:00
Gav Wood
b640df8fbb
Fix initialisation bug. ( #6102 )
2017-07-19 22:29:58 +02:00
Brian Anderson
6345b54034
Add custom panic hook
...
The panic hook prints a backtrace, the panic message, file, and line
number, and a plea to report bugs.
2017-07-19 17:50:48 +00:00
Vurich
7208b9b525
Small fixes
2017-07-19 18:14:10 +02:00
Vurich
ad1835e87c
Unroll 1 more loop
2017-07-19 16:21:55 +02:00
Arkadiy Paronyan
4c32177ef3
Fixed node address detection on incoming connection ( #6093 )
2017-07-19 15:44:08 +02:00
Robert Habermeier
253bc333c7
Merge pull request #6092 from paritytech/returndata-fix
...
Place RETURNDATA behind block number gate
2017-07-19 15:26:28 +02:00
arkpar
9ad0ff960e
Place RETURNDATA behind block number gate
2017-07-19 14:34:59 +02:00
Svyatoslav Nikolsky
7664ff5acd
do not connect to self
2017-07-19 15:14:37 +03:00
Vurich
7d35f994d2
Style ungrumble
2017-07-19 12:09:45 +02:00
Vurich
2cc1c92901
Unroll one more loop
...
I also tried unrolling the 256-iteration loop further below, but it actually caused a
slowdown (my guess is either branch prediction stopped kicking in or the instruction
cache was being maculated).
2017-07-19 12:07:34 +02:00
Svyatoslav Nikolsky
5080cc3c9e
update_nodes_set in maintain
2017-07-19 12:36:40 +03:00
GitLab Build Bot
e5042d0d38
[ci skip] js-precompiled 20170719-084508
2017-07-19 08:49:29 +00:00
Svyatoslav Nikolsky
81de7e1075
initial KeyServerSet commit
2017-07-19 11:35:17 +03:00
Arkadiy Paronyan
d9101b9559
Fixed ethkey CLI build ( #6086 )
2017-07-19 10:18:30 +02:00
Jaco Greeff
49a55886d3
Bump package.json for master 1.8 ( #6074 )
2017-07-19 10:13:43 +02:00
Robert Habermeier
298ea1d748
Bump snap version and tweak importing detection logic ( #6079 )
...
* bump last tick just before printing info and restore sync detection
* bump kovan snapshot version
* Fixed sync tests
* Fixed rpc tests
2017-07-18 16:59:33 +02:00
Denis S. Soldatov aka General-Beck
d157930f2c
chmod +x *scripts
2017-07-18 16:45:58 +03:00
Denis S. Soldatov aka General-Beck
88145752ff
[ci skip] move Aura test https://github.com/paritytech/parity-import-tests in nightly build
2017-07-18 16:45:58 +03:00
Giuseppe Bertone
319a01b34f
User_defaults now contains serialization for is_first_launch parameter; ( #6068 )
...
Solved the "TraceDB resync required" issue when trying to use "--tracing on" option just after a DB kill operation;
2017-07-18 15:38:38 +02:00
Vurich
d51958dbf5
Speed up light_compute by ~9%
2017-07-18 15:38:10 +02:00
Denis S. Soldatov aka General-Beck
801fcf3271
fix docker build in master
2017-07-18 16:17:33 +03:00
Denis S. Soldatov aka General-Beck
df144a6fcb
fix docker build
2017-07-18 16:12:16 +03:00
Vurich
410ded5d45
Remove dead code from benchmarks
2017-07-18 14:17:01 +02:00
Vurich
d994d7a10c
Add benchmarks
2017-07-18 14:14:42 +02:00
Denis S. Soldatov aka General-Beck
649552e0f0
Update snapcraft.yaml
...
fix for builds.snapcraft.io
2017-07-17 21:31:12 +03:00
Jaco Greeff
36f94fde05
Ui 2 package upgrades ( #6076 )
...
* Upgrade to React 15.6
* Import PropTypes from prop-types
* Update package.json
* UI version in built version
* Cleanup /api/health status failures
* Check reponse.ok
* Add icons to view dapps
* Adjust layout for dapps
* Slightly darker balance background
* Adjust shadows
2017-07-17 18:37:33 +02:00
Jaco Greeff
fcdaa0d05b
Upated dependencies
2017-07-17 11:54:13 +02:00
Jaco Greeff
aaff34364d
Merge branch 'master' into ui-2
2017-07-17 11:49:03 +02:00
Denis S. Soldatov aka General-Beck
69561da15f
fix docker build and snapcraft
2017-07-17 12:06:32 +03:00
arkpar
04b641ff5f
Fixed build
2017-07-17 10:45:34 +02:00
Joseph Mark
fefeb50cae
Fix minor merge issue
2017-07-17 13:33:26 +07:00
Joseph Mark
d93a5d3da1
Merge branch 'master' into issues/4673
2017-07-17 13:07:00 +07:00
Joseph Mark
360f1fa34f
Add insecure presets and tests
2017-07-17 13:03:57 +07:00
Andre Silva
c7af702270
Refactor price_info ( #6003 )
...
* refactor PriceInfo to use Fetch and reuse the client
* forget Fetch future to keep it running in the background
* update Debug message for price_info::Client
* wrap underlying errors in price_info client
* use debug_struct in price_info client debug implementation
* use global fetch service in price_info client
* rename gas_pricer parameter in RunCmd
* move price_info to its own crate
* fix price_info tests
* replace rustc_serialize with serde_json in price_info
* add documentation for price_info
* remove unused rustc-serialize dependency from ethcore
* fix price_info formatting
* re-export fetch crate in price_info
* remove unused cfg attributes in price_info
* add tests for price_info
2017-07-16 18:22:45 +02:00
Robert Habermeier
fec4ccbbb8
acquire client report under lock in informant ( #6072 )
2017-07-16 17:43:43 +02:00
GitLab Build Bot
30f2057bdf
[ci skip] js-precompiled 20170716-095403
2017-07-16 10:02:50 +00:00
Arkadiy Paronyan
bb893daf7d
Removed Aura tests
2017-07-16 11:30:58 +02:00
Jaco Greeff
4fc16a9eec
Show busy indicator on Address forget ( #6066 )
...
* Shw busy indicator on Address forget
* Remove debug logs
2017-07-16 11:05:36 +02:00
Nikolay Volf
895350e77c
fix error message ( #6065 )
2017-07-15 19:58:52 +02:00
kaikun213
b5cbe34a2a
Merge remote-tracking branch 'origin/master'
2017-07-15 12:15:29 +02:00
kaikun213
ea14290f52
Merge remote-tracking branch 'origin/master'
2017-07-15 12:14:26 +02:00
Denis S. Soldatov aka General-Beck
c647963911
fix path aura test
2017-07-14 22:02:45 +03:00
Robert Habermeier
99075ad22a
Initial Whisper implementation ( #6009 )
...
* whisper skeleton
* basic message store
* rallying and message logic
* pass host info to network protocol handlers
* choose who starts rally based on node key
* module reshuffling
* mining messages
* prune messages by low PoW until below size target
* associated error type for ethkey generators and `OsRng` generator
* beginnings of RPC
* generic message handler for whisper
* reshuffle code order
* standard payload encoding and decoding
* basic crypto
* minor restructuring of net code
* implement shh_post
* merge?
* implement filters
* rand trait for hash types
* filter RPCs for whisper
* symmetric encryption of payload
* pub-sub
* filter tests
* use only secure random IDs
* attach arbitrary protocols to network
* basic integration of whisper into Parity
* eagerly prune low PoW entries
* broadcast messages with salted topics
* node info RPC
* fix import
* fix leading zeros calculation
* address minor grumbles
2017-07-14 20:40:28 +02:00
Jaco Greeff
a4fa6a3ac7
Add CSP for worker-src ( #6059 )
...
* Specify worker-src seperately, add blob:
* Upgrade react-qr-scan to latest version
2017-07-14 18:50:19 +02:00
Denis S. Soldatov aka General-Beck
3308c40440
fix aura test
2017-07-14 18:02:39 +03:00
Denis S. Soldatov aka General-Beck
69d45f8ce4
add Parity Import Tests
...
https://github.com/paritytech/parity-import-tests
2017-07-14 17:44:43 +03:00
Svyatoslav Nikolsky
5cc40d4525
when error comes before initialization
2017-07-14 14:51:24 +03:00
Svyatoslav Nikolsky
18582d7b65
do not cache ACL storage contract
2017-07-14 13:41:25 +03:00
Joseph Mark
b975efa2bb
Add non-standard-ports preset and test
2017-07-14 10:42:56 +07:00
Joseph Mark
4fea18d945
Add mining preset and test
2017-07-14 10:15:39 +07:00
Joseph Mark
0f37261dbf
Change --min-gas-price to u64
2017-07-14 09:40:47 +07:00
GitLab Build Bot
3fb8a85f83
[ci skip] js-precompiled 20170713-162224
2017-07-13 16:27:01 +00:00
Jaco Greeff
2dc92fc245
Merge branch 'master' into ui-2
2017-07-13 17:28:51 +02:00
Robert Habermeier
664dcc063a
Merge pull request #6051 from paritytech/v1.8
...
v1.8
2017-07-13 17:24:39 +02:00
arkpar
debbfc117a
Bumped version
2017-07-13 15:52:01 +02:00
Tomasz Drwięga
1aaafa2d11
Limit transaction queue memory & limit future queue ( #6038 )
...
* Remove confusing gas_limit in the pool.
* Change defaults
* Limit transaction queue by memory usage.
* Change defaults to something lower.
* Fix rpc test.
* Fix js issues.
* Renamed block_gas_limit
2017-07-13 15:12:25 +02:00
Jaco Greeff
58307479ad
Fix lint/build issue ( #6050 )
2017-07-13 14:37:35 +02:00
Joseph Mark
9c3bd83d3b
Merge branch 'master' into issues/4673
2017-07-13 19:30:52 +07:00
Joseph Mark
e0b15116a5
Replace dev chain special case with preset
...
Add --min-gas-price (does the same as legacy --gasprice) and tweak
gas_pricer_config() and test cases. Dev preset will still be
overridden by CLI arguments, including --gasprice.
2017-07-13 19:25:41 +07:00
Jaco Greeff
e36a7fab2d
Update tests to master version
2017-07-13 11:54:52 +02:00
Jaco Greeff
2007de3241
Fix lint issue.
2017-07-13 11:06:51 +02:00
Jaco Greeff
d8c3c247f8
Merge branch 'master' into ui-2
2017-07-13 10:56:12 +02:00
keorn
22261bc2d1
New contract PoA sync fixes ( #5991 )
...
* generate proofs on newly-created state
* report only missed steps after first block
* dont report skipped if not signer
* test
* finality tracing and passing valid header to `commit_block`
* avoid proposing multiple times on the same step when validator set changes
* limit benign reports
* Ordering -> AtomicOrdering
* reinstate warning now that spam is reduced
* flush pending transition changes when necessary
* ensure epochs aren't re-zoomed on every block
2017-07-13 09:48:00 +02:00
Marek Kotewicz
40e29c92bc
make Multisig Wallet walletSourceUrl point to the latest version of solidity contract ( #5984 )
2017-07-13 09:47:51 +02:00
Robert Habermeier
d365281cce
Ethcore crate split part 1 ( #6041 )
...
* split out types into separate crate
* split out evm into its own crate
2017-07-12 13:09:17 +02:00
Joseph Mark
451ef7f09b
Add preset cmd/arg to test args
2017-07-12 16:31:28 +07:00
Joseph Mark
2d52c7b42f
Merge branch 'master' into issues/4673
2017-07-12 16:06:23 +07:00
Joseph Mark
d4175ca6c6
Add preset command to parity CLI
...
Preset configs are loaded from bundled toml files and overridden by
CLI options.
2017-07-12 16:03:21 +07:00
Tomasz Drwięga
24c8510932
Fix status icon ( #6039 )
...
* Fix status icon when zooming out.
* Fix health errors.
2017-07-12 08:52:50 +02:00
Joseph Mark
0fca4f95d6
Errors & warnings for inappropriate RPCs ( #6029 )
...
* Clarify function name
Function checks if sealing is currently underway, not to be confused
with checking whether the engine performs internal sealing.
* Error when work called on internal sealing engine
* Error submitting work for internal sealing engine
* Fix inverted bool and style grumbles
* Add can_produce_work_package to TestMinerService
* Error when setting engine signer on PoW chain
* Unit tests for engine signing
Setting engine signer should fail if chain does not seal internally
or client lacks account provider.
* Tweak TestMinerService
* Fix minor style grumbles
2017-07-12 08:52:18 +02:00
Robert Habermeier
02f2c611d4
Merge pull request #5992 from paritytech/csp-fix
...
Add missing CSP for web3.site
2017-07-11 16:12:03 +02:00
kaikun213
0ad0c7882f
Merge remote-tracking branch 'origin/csp-fix'
2017-07-11 15:25:58 +02:00
Tomasz Drwięga
a30f43b36c
Fix ui-no-validation.
2017-07-11 14:49:35 +02:00
Tomasz Drwięga
ba4d8ceaf3
Merge branch 'master' into csp-fix
2017-07-11 13:45:23 +02:00
GitLab Build Bot
45d44bedef
[ci skip] js-precompiled 20170711-113031
2017-07-11 11:36:24 +00:00
Robert Habermeier
cd0b62338b
Merge pull request #6037 from paritytech/a5-docs-install
...
Remove cargo install --git from README.md
2017-07-11 13:14:58 +02:00
5chdn
b844c8a29a
Remove cargo install git from README.md, ref #6007
2017-07-11 13:08:53 +02:00
Jaco Greeff
92a9ff3c1a
Update after merge
2017-07-11 12:47:22 +02:00
Jaco Greeff
a1a8181913
Merge branch 'master' into ui-2
2017-07-11 12:38:51 +02:00
Joseph Mark
9c1030878e
Add config preset files
2017-07-11 17:29:34 +07:00
Tomasz Drwięga
4936e99f30
Node Health warnings ( #5951 )
...
* Health endpoint.
* Asynchronous health endpoint.
* Configure time api URL via CLI.
* Tests for TimeChecker.
* Health indication on Status page.
* Adding status indication to tab titles.
* Add status to ParityBar.
* Fixing lints.
* Add health status on SyncWarning.
* Fix health URL for embed.
* Nicer messages.
* Fix tests.
* Fixing JS tests.
* NTP time sync (#5956 )
* use NTP to check time drift
* update time module documentation
* replace time_api flag with ntp_server
* fix TimeChecker tests
* fix ntp-server flag usage
* hide status tooltip if there's no message to show
* remove TimeProvider trait
* use Cell in FakeNtp test trait
* share fetch client and ntp client cpu pool
* Add documentation to public method.
* Removing peer count from status.
* Remove unknown upgrade status.
* Send two time requests at the time.
* Revert "Send two time requests at the time."
This reverts commit f7b754b1155076a5a5d8fdafa022801fae324452.
* Defer reporting time synchronization issues.
* Fix tests.
* Fix linting.
2017-07-11 12:23:46 +02:00
Tomasz Drwięga
7fb46bff06
RPC cpu pool ( #6023 )
...
* RPC cpu pool.
* introduce optional thread pool when processing RPC requests.
* Bump jsonrpc.
* Removing boxes.
* Fix CLI tests.
2017-07-11 12:22:19 +02:00
Nikolay Volf
dc51dde112
update deps ( #6036 )
2017-07-11 12:06:35 +03:00
arkpar
c05924a713
Fixed build
2017-07-11 10:21:23 +02:00
kaikun213
f1dcdab75d
Merge remote-tracking branch 'origin/csp-fix'
2017-07-11 09:58:42 +02:00
Axel Chalon
d970237658
Add test for loading the chain specs ( #6028 )
...
* Add test for loading the json chain specs
* Remove test on Ethereum specs as it already exists
2017-07-10 19:26:10 +02:00
Jaco Greeff
03b0ea6139
Merge branch 'master' into ui-2
2017-07-10 17:43:37 +02:00
Tomasz Drwięga
56c275b0cb
Whitelist APIs for generic Pub-Sub ( #5840 )
...
* Whitelisting generic pub-sub APIs.
* Clone enums instead of allocating a vec.
2017-07-10 17:42:29 +02:00
Nikolay Volf
62210fb932
WASM contracts MVP ( #5679 )
...
* lifetime issues
* refactor to new 'native env'
* descriptors and such
* wasm mvp continued
* finalized env/ext bindings
* descriptor -> call_args
* inject gas counter
* result processing and engine activation
* tabify some source files
* needs return new
* wasm tests initial
* erradicate warnings
* origin in the descriptor
* update test repo
* payload verification tests
* identity return payload test
* some test description
* dispersion test
* check length here
* suicidal contract
* engine params
* fix typo
* review fixes
* submodule update
* update - purge reserved space
* doc effort
* more review fixes
* fix error message
* fix dependency url
* reorg error handling
* update submodule
* update utils
* update to latest parity-wasm
* tabify
* fix wasm magic header
* update dependencies
* external create and tests
* update to latest tests
* extra trace info
* Update parity-wasm
* update wasm-utils also
* few traces and result handle change
* alter trace content
* fix issues with optimizer, update to latest parity with validator, etc
* static initialization
* license preamble
* update wasm crates and gas costs
* fix grumbles
* bring back lifetime
* fix compilation
2017-07-10 17:42:10 +02:00
Jaco Greeff
b49c039f41
Set observable on component ( #6033 )
2017-07-10 17:38:40 +02:00
Jaco Greeff
3d24ae0981
Merge branch 'master' into ui-2
2017-07-10 17:36:55 +02:00
Jaco Greeff
801b6e0ded
UI 2 dapp configuration dapps ( #6032 )
...
* Add shell_ APIs
* Allow handling of shell_ calls
* Retrieve API info via call
* Split Dapp Method config into dapp
* Allow shell API for configuring dapps
* Move dapp toggles to dapp itself
* Align provider naming
* Selection of default accounts via dapp
* Remove duplicated spec
2017-07-10 17:03:16 +02:00
Jaco Greeff
4dd68f1ef3
Ui 2 provider rename (web3Provider -> ethereum) ( #6031 )
...
* Rename web3Provider -> ethereumProvider
* ethereumProvider -> ethereum
2017-07-10 15:56:43 +02:00
Arkadiy Paronyan
15aebacbe7
--reseal-on-uncle ( #5940 )
...
* --reseal-on-uncle
* Optimized uncle check
* Additional uncle check
* Updated comment
2017-07-10 13:36:42 +02:00
Axel Chalon
7599e3998f
Support comments in reserved nodes file ( #6004 ) ( #6012 )
2017-07-10 13:24:40 +02:00
Jaco Greeff
204fe44b29
Add new md tnc ( #5937 )
...
* Add new md tnc
* Skip markdown import in test
2017-07-10 13:23:59 +02:00
Tomasz Drwięga
f4453f77b8
Fix output of parity-evm in case of bad instruction ( #5955 )
...
* Fix output of evmbin.
* Use foundation chain settings by default.
2017-07-10 13:23:40 +02:00
Tomasz Drwięga
ed5efebec1
Don't send to old subscriptions. ( #5960 )
2017-07-10 13:23:19 +02:00
Robert Habermeier
67c1f71b6e
Proper light client informant and more verification of imported headers ( #5897 )
...
* do more validation of imported headers in light client
* generalize informant with traits
* informant implementation for light client
* make comment into TODO
* fix broken test
* disable full checking of headers in light client in sync tests
2017-07-10 13:21:11 +02:00
keorn
f0a6b5d401
azure nodes ( #6017 )
2017-07-10 13:05:05 +02:00
Tomasz Drwięga
a24b6ad983
Use standard paths for Ethash cache ( #5881 )
...
* Use cache path to store ethash files.
* Fixing tests, more flexible API.
* Use AsRef<Path> everywhere.
* Fixing ethcore tests.
* Fix RPC tests.
2017-07-10 12:57:40 +02:00
Jaco Greeff
699aab0b80
Update package-lock.json
2017-07-10 11:40:45 +02:00
Jaco Greeff
84f11278ba
Merge branch 'master' into ui-2
2017-07-10 11:33:07 +02:00
Jaco Greeff
cbcda140ec
Ui 2 updates subscribe ( #6027 )
...
* Add account & vault APIs
* Additional status methods
* Move permission modals into Dapp
* Adjust display position
* Don't publish invalid events
* Cleanup Wallet display
* Update package-lock
* Align icon buttons center
* Adjust account selectors
* Adjust wallet white
* Allow display of boolean/false values
* Pass value through correctly for disabled inputs
* Split requests into sections
* onClict -> onClick
* Update label
* Update skip step
* Connect provider interfaces
2017-07-10 11:04:29 +02:00
Tomasz Drwięga
b0f1f8307d
X-Frame-Options removed.
2017-07-10 09:42:35 +02:00
Tomasz Drwięga
ad67ea0eb5
Merge branch 'master' into csp-fix
2017-07-09 14:10:53 +02:00
Robert Habermeier
125aa0aeb4
Merge pull request #5959 from paritytech/dont-compute-hash
...
Defer code hash calculation.
2017-07-06 19:00:19 +02:00
GitLab Build Bot
df0ef6618d
[ci skip] js-precompiled 20170706-164115
2017-07-06 16:47:59 +00:00
Robert Habermeier
0409e95d1e
Merge pull request #6000 from paritytech/new-acc
...
Fix first run wizard.
2017-07-06 18:02:47 +02:00
Robert Habermeier
104367ce24
Merge pull request #5996 from paritytech/serdeup
...
migration to serde 1.0
2017-07-06 18:02:11 +02:00
debris
5f2cb5e52f
push CI
2017-07-06 16:48:58 +02:00
debris
8118444442
fixed rpc tests
2017-07-06 15:25:51 +02:00
debris
9e185030e6
push CI
2017-07-06 14:49:10 +02:00
debris
f4f8b411f5
fixed parity tests with new serde and toml
2017-07-06 14:10:41 +02:00
Svyatoslav Nikolsky
6334893561
SecretStore: generating signatures ( #5764 )
...
* refactoring traits
* separate generation session
* generalized ClusterSessions
* signing session prototype
* full_signature_math_session
* consensus session prototype
* continue signing session
* continue signing session
* continue signing session
* continue signing session
* isolated consensus logic
* started work on signing test
* complete_gen_sign_session works
* consensus tests
* get rid of duplicated data in SigningSession
* TODOs in signing session
* fixing tests
* fixed last test
* signing session in http listener
* new key server tests
* fix after merge
* enabled warnings
* fixed possible race
* ignore previous jobs responses
* include sef node in consensus when confirmed
* fixed warning
* removed extra clones
* consensus_restarts_after_node_timeout
* encrypt signature before return
* return error text along with HTTP status
* fix for odd-of-N (share check fails + not equal to local sign)
* fixed t-of-N for odd t
* fixed test cases in complete_gen_sign_session
* fixed mistimed response reaction
* jobs draft
* DecryptionJob
* consensus session tets
* fixed decryption tests
* signing job implementation
* siginng_session using new consensus_session
* added license preambles
* same_consensus_group_returned_after_second_selection
* database upgrade v0 -> v1
* typo
* fixed grumbles
2017-07-06 14:02:10 +02:00
kaikun213
76f0247f5d
Tests still warn because of old provider in some tests
2017-07-06 12:42:10 +02:00
debris
44ae70e9ec
Merge branch 'serdeup' of github.com:paritytech/parity into serdeup
2017-07-06 11:44:37 +02:00
debris
1c2a4c116a
Merge branch 'master' into serdeup
2017-07-06 11:43:46 +02:00
debris
61d8f90530
updated serde to version 1.0
2017-07-06 11:36:15 +02:00
Marek Kotewicz
46183b1cdd
bigint upgraded to version 3.0 ( #5986 )
...
* bigint upgraded to version 3.0
* fixed missing FromHex import in ethcore tests
* fixed missing FromHex import in rpc tests
2017-07-06 11:26:14 +02:00
Marek Kotewicz
a78a89b13a
Merge pull request #5965 from guanqun/fix-force-seal
...
config: don't allow dev chain with force sealing option
2017-07-06 11:20:06 +02:00
Marek Kotewicz
e91025282e
Merge pull request #5969 from brson/lockfile
...
Update lockfile for miniz-sys and gcc
2017-07-06 11:18:52 +02:00
Marek Kotewicz
a3a4a37ec7
Merge pull request #5995 from paritytech/rpc-errors-naming-3204
...
Clean up function naming in RPC error module
2017-07-06 11:18:04 +02:00
debris
687a542260
Merge branch 'bigint3' into serdeup
2017-07-06 11:15:19 +02:00
debris
e7d3036ace
fixed missing FromHex import in rpc tests
2017-07-06 10:46:40 +02:00
GitLab Build Bot
33f1d2af1e
[ci skip] js-precompiled 20170706-081457
2017-07-06 08:21:42 +00:00
debris
1d386f60e9
Merge branch 'bigint3' into serdeup
2017-07-06 10:19:35 +02:00
debris
7dcbcb5c31
fixed missing FromHex import in ethcore tests
2017-07-06 10:18:48 +02:00
Jef
981854d5ae
Merge pull request #5975 from Vurich/fix-underflow
...
Fix underflow in gas calculation
2017-07-06 10:10:06 +02:00
kaikun213
349316f70e
PubSub for parity-js ( #5830 )
...
* PubSub Integration WebSocket
* PubSub Provider API
* Parity License and fix switch statement
* Minor fix: use parameter api
* Exclude subscriptionId return
* Unsubscribe parameters as array
* secureProvider API added
* isSecure check
* Refractor: Formatting in callback (no Promise)
* Tests for parityProvider
* Refractor: Formatting in callback (secure API)
* Updated transaction documentation
* Module instead of API-Names, Options always as array (e.g. empty)
'parity' instead of 'parity_subscribe' calls
params with empty array as options. If eth_subscribe includes empty array parity-core will send invalid request (eth api doesn't have options)
* Removed isSecure transport check, because APIs are configurable
* Refractor Provider API to single Pubsub
* Modify transport layer to have single identifier for subscriptions
* FIX: Display pubsub errors
* Discard Messages after unsubscribing
* Fix: display error normal messages correctly
* Simplified code, removed unnecessary pubsub methods
* trace_call API 2nd argument blockNumber, first whatTrace
https://github.com/paritytech/parity/wiki/JSONRPC-trace-module#trace_call
* Separate namespaces pubsub. eth, parity, net
* Keep error for messages from unsubscribed topics.
* Fix: Unsubscribe Promise
* Add Test: Unsubscribe promise resolved
* Fix: 'error' in params
2017-07-06 09:50:27 +02:00
Tomasz Drwięga
58a27b3334
Fix first run wizard.
2017-07-05 12:25:07 +02:00
debris
2d69c7ecf6
finished migration to serde 1.0
2017-07-05 10:34:23 +02:00
debris
2c4f55a8fb
migrated rpc to serde 1.0
2017-07-05 10:27:56 +02:00
debris
2e5f7f1632
migrated ethcore engine to new ethabi interface
2017-07-05 10:18:19 +02:00
debris
e448b84845
migrated ethcore-network to bytes 0.4
2017-07-04 18:12:39 +02:00
debris
972d30c288
migrated ethcore, ethstore, secret_store, updater and hash-fetch to serde 1.0
2017-07-04 17:23:06 +02:00
Axel Chalon
59e87b6a51
Clean up function naming in RPC error module
2017-07-04 17:01:06 +02:00
debris
9c911c7a28
migrated ethjson to serde 1.0
2017-07-04 17:00:42 +02:00
Tomasz Drwięga
949086baa5
Add missing frame-ancestors.
2017-07-04 16:43:53 +02:00
debris
286526072f
migrated ethkey, ethstore, evmbin and parity executables to serde 1.0
2017-07-04 14:31:16 +02:00
debris
a9aaacd88b
bigint upgraded to version 3.0
2017-07-04 12:19:11 +02:00
Vurich
2e90e02a2c
Fix underflow
2017-07-03 17:43:03 +02:00
Jaco Greeff
c33ff96bb6
Merge branch 'master' into ui-2
2017-07-03 17:39:46 +02:00
Jaco Greeff
15a9e56b09
Ui 2 expand method filters ( #5974 )
...
* Add account & vault APIs
* Additional status methods
* Move permission modals into Dapp
* Adjust display position
* Don't publish invalid events
2017-07-03 17:05:56 +02:00
Robert Habermeier
cc718bb108
Merge pull request #5958 from Vurich/peer-status
...
Report whether a peer was kept from `Handler::on_connect`
2017-07-03 16:22:50 +02:00
Robert Habermeier
826a4ca0a2
Implement skeleton for transaction index and epoch transition proof PIP messages ( #5908 )
...
* add transaction index message without implementing
* add epoch proof fetch and response messages
2017-07-03 12:25:10 +02:00
Jaco Greeff
7f77e6004c
Cleanup selector ( #5971 )
2017-07-03 10:36:34 +02:00
Jaco Greeff
15d4bc9d6d
Save permissions ( #5970 )
2017-07-03 10:03:29 +02:00
Jaco Greeff
9f8467aa80
Merge branch 'master' into ui-2
2017-07-03 09:56:54 +02:00
Jaco Greeff
1896c2720b
Use qrcode-generator directly from package
2017-07-03 09:48:17 +02:00
Brian Anderson
7240eee5a8
Update lockfile for miniz-sys and gcc
...
Fixes build with VS 2017.
2017-07-03 01:44:20 +01:00
Guanqun Lu
9241c6a9b5
config: don't allow dev chain with force sealing option
2017-07-01 23:20:49 +08:00
Vurich
17de29e69a
Prevent disconnect from within handler (and style cleanup)
2017-06-30 12:10:12 +02:00
Tomasz Drwięga
f22745eb0a
TransactionQueue improvements ( #5917 )
...
* Order by id instead of hash.
* Minimal gas price bump.
* Avoid to construct oversized transaction packets.
* Fix RPC.
* Never construct oversized transactions packet.
* Never construct oversized packets.
2017-06-30 11:57:48 +02:00
Tomasz Drwięga
5d9f5e3509
Defer code hash calculation.
2017-06-30 11:30:32 +02:00
Vurich
5eba9078fc
Report whether a peer was kept from Handler::on_connect
2017-06-30 11:00:32 +02:00
Robert Habermeier
a3e693d5c3
Merge pull request #5952 from paritytech/constant-time-mac-compare
...
constant time HMAC comparison and clarify docs in ethkey
2017-06-29 22:21:12 +02:00
Robert Habermeier
36c91e4ed5
Merge pull request #5954 from paritytech/evm-defer
...
Avoid pre-computing jump destinations
2017-06-29 21:18:16 +02:00
Robert Habermeier
83690fdb90
Merge branch 'master' into constant-time-mac-compare
2017-06-29 21:15:20 +02:00
Tomasz Drwięga
38c00fae88
Merge branch 'master' into evm-defer
2017-06-29 18:42:58 +02:00
Tomasz Drwięga
465c7eeaa2
Defer construction valid_jump_destinations.
2017-06-29 17:43:34 +02:00
Robert Habermeier
a4195f2780
Merge pull request #5949 from Vurich/upgrade-elastic-array
...
Upgrade elastic array
2017-06-29 17:12:53 +02:00
Robert Habermeier
8a3e82d99a
constant time HMAC comparison and clarify docs in ethkey
2017-06-29 13:44:24 +02:00
Vurich
01ce28bc9a
Fix tests
2017-06-29 13:05:33 +02:00
Vurich
3d8dc11442
Upgrade elastic-array to 0.9.0
...
This is a huge change, which includes some changes to replace code that
originally cloned to reuse allocations instead. The updated
`elastic-array` crate renames its consuming `Vec`-conversion method to
`into_vec`, which means that I can do a simple
`sed -i 's/to_vec/into_vec/'` and then fix the compilation errors.
This commit is probably a minor performance win and definitely a
significant readability win.
2017-06-29 13:05:33 +02:00
arkpar
826bf28196
Fixed build
2017-06-28 16:11:18 +02:00
Jaco Greeff
8798ed4499
Merge branch 'master' into ui-2
2017-06-28 14:27:25 +02:00
Robert Habermeier
d069b98b45
PoA: Wait for transition finality before applying ( #5774 )
...
* final engine changes
* migration to v13
* adding and removing pending transitions
* epoch_transition_for
* port snapshot to new engine methods
* final validator set interface
* fix compiler errors
* revert v13/epoch_depth transition
* make call on new epoch
* rolling finality checker
* tests for finality checker
* constructing finality proof upon pending transition
* fix warnings and finality proof checking
* fix compiler warnings in tests
* test fixes
* don't include genesis in finality checking
* change snapshot test chain building logic
* minor refactorings
* fetch epoch transition based on parent, fix divide-by-zero in SimpleList
* fix formatting
* fix ABIs and finality checking in snapshot restoration
* encode signal number in proof
* create more blocks at the end of tests
* update gist to accurate contract code
* test for epoch_transition_for
* fix tests with immediateTransitions parameter
* disable force flag after forcing
* rename ValidatorsChanged to InitiateChange and finalizeSignal to finalizeChange
* a few more validator set tests
2017-06-28 13:17:36 +02:00
Denis S. Soldatov aka General-Beck
3637c14da5
fix Windows and MacOS build
...
add `cargo clean`
2017-06-28 14:03:17 +03:00
Denis S. Soldatov aka General-Beck
201f34620a
CI build
...
add evmbin, ethstore, ethkey
2017-06-28 13:54:05 +03:00
Tomasz Drwięga
71c68cc000
Logs Pub-Sub ( #5705 )
...
* Logs subscription.
* Add test.
* lock -> write
2017-06-28 12:21:13 +02:00
Leo Arias
bcc84a31b7
Add the command to install the parity snap ( #5945 )
...
Putting the installation instructions for the snap will help getting more testers, and then publish it in the stable channel with more confidence.
2017-06-28 09:37:47 +02:00
Jef
72094a8bee
Reduce unnecessary allocations ( #5944 )
2017-06-28 09:36:42 +02:00
Tomasz Drwięga
944f9d7fb5
Clarify confusing messages. ( #5935 )
2017-06-28 09:35:25 +02:00
Tomasz Drwięga
c7a043b864
Content Security Policy ( #5790 )
...
* Adding CSP headers.
* Adding Content-Security-Policy headers.
* Fixing test.
* CSP in ws server responses.
2017-06-28 09:12:02 +02:00
Arkadiy Paronyan
57626b60e7
EIP-168, 169: Dust protection ( #4757 )
...
* Dust protection
* Track touched accounts in the substate
* Minor alterations
2017-06-28 09:10:57 +02:00
GitLab Build Bot
6b16fe3f14
[ci skip] js-precompiled 20170627-213135
2017-06-27 21:35:37 +00:00
Arkadiy Paronyan
4a7bcfe4f0
CLI: Export error message and less verbose peer counter. ( #5870 )
...
* Removed numbed of active connections from informant
* Print error message when fatdb is required
* Remove peers from UI
2017-06-27 22:40:46 +02:00
Guanqun Lu
59488769cf
network: make it more explicit about StreamToken and TimerToken ( #5939 )
2017-06-27 18:24:18 +02:00
Guanqun Lu
547031aa0e
sync: make it more idiomatic rust ( #5938 )
2017-06-27 18:23:53 +02:00
arkpar
196c3e7e9b
Fixed profile
2017-06-27 11:53:10 +02:00
David Dorgan
16caf032bd
Only use -cli for the build, not binary itself.
2017-06-27 09:23:16 +02:00
Denis S. Soldatov aka General-Beck
4900e90112
build ethkey & ethstore
...
add -cli
2017-06-26 22:06:00 +03:00
Maciej Hirsz
02edc958d7
Merge pull request #5909 from paritytech/mh-always-show-accounts
...
Prioritize accounts over address book
2017-06-23 16:31:52 +02:00
maciejhirsz
2c254e3b32
Prioritize accounts over address book
2017-06-23 16:29:45 +02:00
Tomasz Drwięga
e73569c84d
Fixing RPC test. ( #5916 )
2017-06-23 16:17:04 +02:00
GitLab Build Bot
cf772ef555
[ci skip] js-precompiled 20170623-115250
2017-06-23 11:56:57 +00:00
Jaco Greeff
0f41121556
Empty local middleware, until explicitly requested ( #5912 )
...
* Empty local middleware, until explicitly requested
* Remove previous empty overrides (unneeded now)
* Re-add over-zealous keyethereum removal
2017-06-23 13:40:16 +02:00
Jaco Greeff
6dfa097752
Update
2017-06-23 11:57:33 +02:00
Jaco Greeff
d9cb2c7781
Update
2017-06-23 11:53:20 +02:00
Jaco Greeff
72f3576c78
Merge branch 'master' into ui-2
2017-06-23 11:48:12 +02:00
Craig O'Connor
614a80bd23
Cancel propagated TX ( #5899 )
...
* lgtm
* linting
* Slight shortening
2017-06-23 10:32:19 +02:00
Robert Habermeier
796482c129
fix minor race condition in aura seal generation ( #5910 )
2017-06-22 20:44:04 +02:00
Robert Habermeier
b6fd18a9ca
Merge pull request #5833 from paritytech/pubsub-docs
...
Docs for Pub-Sub, optional parameter for parity_subscribe
2017-06-22 20:17:02 +02:00
Jaco Greeff
64e6d36944
Fix gas editor doubling-up on gas ( #5820 )
2017-06-22 20:14:04 +02:00
Anton Gavrilov
f9033facd3
Information about used paths added to general output block ( #5904 )
...
* Information about used paths added to general output block
* Print was added into execute light also
2017-06-22 20:08:56 +02:00
Tomasz Drwięga
53609f703e
Domain-locked web tokens. ( #5894 )
...
* Domain-locking web tokens.
* JS part.
* Fix linting issues.
2017-06-22 20:05:40 +02:00
Arkadiy Paronyan
4d5280e43c
removed panic handlers ( #5895 )
2017-06-22 19:00:53 +02:00
Anton Gavrilov
dc548315b8
Merge pull request #5905 from paritytech/Merge-RocksDB
...
Latest changes from Rust RocksDB binding merged
2017-06-22 16:30:19 +03:00
Anton Gavrilov
7489a2b36f
Latest changes from RocksDB binding merged
2017-06-22 15:54:08 +03:00
GitLab Build Bot
91f1c84048
[ci skip] js-precompiled 20170622-115440
2017-06-22 11:58:47 +00:00
Jaco Greeff
e1cd60987b
Adjust keyethereum/secp256 aliasses ( #5903 )
...
* Alias keyethereum to empty for libraries/npm
* Alias long-standing vertx warning to empty
* Alias secp256k1
* remove package-lock.json (not active atm)
2017-06-22 13:29:12 +02:00
GitLab Build Bot
df51cad7e2
[ci skip] js-precompiled 20170622-101935
2017-06-22 10:23:53 +00:00
Jaco Greeff
a60c5527c7
Keyethereum fs dependency ( #5902 )
...
* Set process.browser
* Empty fs module (keyethereum dep)
* !==
2017-06-22 11:49:44 +02:00
Jaco Greeff
a6d3d4ea4c
Secure API access via single-use tokens ( #5892 )
...
* Single use token for dapp permissions
* Add accountsInfo & allAccountsInfo
* Covert token -> dappName in requests
2017-06-21 15:15:23 +02:00
Jaco Greeff
97c67bc259
Merge branch 'master' into ui-2
2017-06-21 11:15:29 +02:00
Stewart Mackenzie
d152fa3e85
Ethereum Classic Monetary Policy ( #5741 )
...
* Ethereum Classic Monetary Policy
Create a new parameter `ecip1017EraRounds`. When the block number
passes one era rounds, the reward is reduced by 20%.
See https://github.com/ethereumproject/ECIPs/blob/master/ECIPs/ECIP-1017.md
* Update rewards for uncle miners for ECIP1017
In the monetary policy, the rewards are changed from "up to 7/8 of the
reward" to "1/32 of the reward".
* Fix an off-by-one error in ECIP1017 era calculation
According to
https://github.com/ethereumproject/ECIPs/blob/master/ECIPs/ECIP-1017.md ,
when in block number 5,000,000, it should still be in Era 1 (which in
our code `era == 0`). So we need to check whether the `rem` equals to
zero and act accordingly when calculating the era.
* `ecip1017_era_rounds` missing from EthashParams when run in build bot
* strip out ecip1017_eras_block_reward function and add unit test
2017-06-19 18:56:37 +02:00
Tomasz Drwięga
a19be3cb51
Initial token should allow full access. ( #5873 )
2017-06-19 18:35:56 +02:00
Maciej Hirsz
e871b7a0ac
Merge pull request #5856 from paritytech/mh-pubnode-dappsigner
...
Fixed account selection for Dapps on public node
2017-06-19 18:29:06 +02:00
Robert Habermeier
c8e176b2e3
Merge pull request #5874 from paritytech/track-bad-snapshot-hashes
...
blacklist bad snapshot manifest hashes upon failure
2017-06-19 17:57:06 +02:00
Jaco Greeff
e479260e1f
Method intercept dialog selection ( #5875 )
...
* Cleanup filter config
* Show single request of type (at a time)
* Align packages
* DappFilter -> DappRequests
* Methods dialog (WIP)
* Initial dapp methods modal
* Align dialog & popup permissions
* appname -> token mapping TODOs
* Case
2017-06-19 17:25:17 +02:00
GitLab Build Bot
367a5c998d
[ci skip] js-precompiled 20170619-145413
2017-06-19 14:58:49 +00:00
Maciej Hirsz
b824bc29b5
Merge pull request #5838 from paritytech/ng-fix-timeouts
...
Fix wrongly called timeouts
2017-06-19 16:30:30 +02:00
Robert Habermeier
d168479a85
blacklist bad manifest hashes upon failure
2017-06-19 16:24:07 +02:00
Robert Habermeier
bedce59a6f
Merge pull request #5867 from guanqun/small-fixes
...
ArchiveDB and other small fixes
2017-06-19 14:03:48 +02:00
Robert Habermeier
b84be93bb7
Merge pull request #5866 from guanqun/remove-try
...
convert try!() to ?
2017-06-19 14:02:58 +02:00
Saulius Valatka
a7da8eb593
Make config file optional ( #5847 )
2017-06-19 11:42:29 +02:00
Marek Kotewicz
575c51f5a0
eip214, #4833 ( #4851 )
2017-06-19 11:41:46 +02:00
Marek Kotewicz
c50dacff17
all executables are workspace members ( #5865 )
...
* ethstore-cli and ethkey-cli are workspace projects
* evmbin is now a workspace project
2017-06-19 11:29:09 +02:00
Jaco Greeff
d4532fac18
Updated after merge
2017-06-19 10:42:17 +02:00
Jaco Greeff
4dd26c0d7c
Merge branch 'master' into ui-2
2017-06-19 10:39:05 +02:00
Jaco Greeff
acf9096a83
Updated
2017-06-19 10:38:32 +02:00
Robert Habermeier
a99d4c3dd3
Merge pull request #5860 from paritytech/minor-modexp-optimization
...
minor optimizations of the modexp builtin
2017-06-18 18:20:59 +02:00
Guanqun Lu
c1e5c36f7e
EthStore: add a Chinese path to tests in ethstore
2017-06-18 23:13:27 +08:00
Guanqun Lu
4eff7abf3b
StateDB: change spaces to tab
2017-06-18 23:13:27 +08:00
Guanqun Lu
a5531e83fd
ArchiveDB: add a new test case
2017-06-18 23:13:27 +08:00
Guanqun Lu
7f07f7d567
ArchiveDB: add a contains() test for long history test case
2017-06-18 23:13:27 +08:00
Guanqun Lu
41fed96d96
convert try!() to ?
2017-06-18 22:16:34 +08:00
Robert Habermeier
ed20fa4da1
Merge pull request #5766 from guanqun/db-tests
...
three small commits for HashDB and MemoryDB
2017-06-18 04:24:45 +02:00
Robert Habermeier
e06d1dbb0c
Merge pull request #5801 from guanqun/use-retain-for-memorydb
...
use rust 1.18's retain to boost the purge performance
2017-06-18 04:24:17 +02:00
Guanqun Lu
1efa7e7b10
add one more test case for consolidate, both are negative
2017-06-18 09:02:44 +08:00
Guanqun Lu
ce8f8f40d7
move MemoryDB's tests into tests module
2017-06-18 09:02:44 +08:00
Guanqun Lu
4efd673c19
add a bit clarification to HashDB's remove() interface
2017-06-18 09:02:44 +08:00
Robert Habermeier
ca27234a59
minor optimizations of the modexp builtin
2017-06-17 21:18:52 +02:00
Denis S. Soldatov aka General-Beck
3111421866
Update .gitlab-ci.yml
...
snap update
2017-06-17 22:03:12 +03:00
GitLab Build Bot
42dcdde4e8
[ci skip] js-precompiled 20170616-172546
2017-06-16 17:30:14 +00:00
Robert Habermeier
d6a0792bd9
Merge pull request #5858 from paritytech/mh-ipfs-allow-post
...
Allow IPFS server to accept POST requests
2017-06-16 18:46:53 +02:00
Robert Habermeier
7931d6a02a
Merge pull request #5836 from paritytech/a5-ui-terminology
...
Dutch i18n from #5802 for master
2017-06-16 18:45:42 +02:00
Robert Habermeier
07e150a147
Merge pull request #5851 from trappist/typos
...
Typos in token deploy dapp ui
2017-06-16 18:45:27 +02:00
maciejhirsz
649de53382
Allow IPFS server to accept POST requests
2017-06-16 16:29:15 +02:00
maciejhirsz
ba6e41cf07
Fixed account selection for Dapps on public node
2017-06-16 14:00:30 +02:00
Rocco Stanzione
ba35d69831
Typos in token deploy dapp ui
2017-06-15 20:06:46 -05:00
Robert Habermeier
8d04dffe69
Merge pull request #5778 from paritytech/unlock
...
A CLI flag to allow fast transaction signing when account is unlocked.
2017-06-15 15:54:51 +02:00
Jaco Greeff
df52394871
UI 2 Approve-all for Filters ( #5846 )
...
* Approve all requests or type for token
* Approve all functionality
* Remove extra console.log
2017-06-15 11:59:14 +02:00
Jaco Greeff
58f15f1674
Filter request popups ( #5843 )
...
* Formatting
* Update dapps to use web3Provider
* Remove secure flag from config
* Basic request approve/reject popup
* Lenient provider checks
* Case sensitivity fix
2017-06-14 17:12:13 +02:00
Nicolas Gotchac
8cb4bc2127
Fix wrongly called timeouts
2017-06-14 12:35:36 +02:00
Tomasz Drwięga
963bcba267
Merge branch 'master' into unlock
2017-06-14 12:06:27 +02:00
Tomasz Drwięga
efc46e78f1
Fix description of AccountProvider setting.
2017-06-14 12:06:15 +02:00
Tomasz Drwięga
00b58d1206
Merge branch 'master' into pubsub-docs
...
# Conflicts:
# rpc/src/v1/tests/mocked/pubsub.rs
2017-06-14 11:46:30 +02:00
Tomasz Drwięga
f7fb1bfa1d
Fix linting.
2017-06-14 11:45:44 +02:00
Jaco Greeff
38b4ba8d33
Update package-lock
2017-06-14 10:27:33 +02:00
Jaco Greeff
121b742482
Merge branch 'master' into ui-2
...
# Conflicts:
# Cargo.lock
# ethcore/src/evm/instructions.rs
# js/package.json
# js/src/modals/CreateAccount/AccountDetails/accountDetails.js
# js/src/modals/FirstRun/TnC/tnc.js
# js/src/modals/FirstRun/Welcome/welcome.js
# js/src/ui/Form/Input/input.js
# js/src/views/Accounts/accounts.js
# js/src/views/Settings/Views/defaults.js
# js/src/views/Settings/Views/views.js
# js/webpack/app.js
# js/webpack/libraries.js
2017-06-14 10:16:42 +02:00
GitLab Build Bot
8aa2ed175e
[ci skip] js-precompiled 20170613-162317
2017-06-13 16:31:45 +00:00
Tomasz Drwięga
fb3668f903
Adding missing documentation. ( #5821 )
2017-06-13 18:38:10 +03:00
Nicolas Gotchac
e4c7a7f30a
Don't fail on wrong log decoding ( #5813 )
2017-06-13 18:36:51 +03:00
Tomasz Drwięga
57479dac27
Use randomized subscription ids for PubSub ( #5756 )
...
* Use randomized subscription ids for PubSub
* Use H64 instead of H128.
* iflet instead of match.
* Adding 0x.
2017-06-13 18:36:39 +03:00
Tomasz Drwięga
47e1e18e7e
Ignoring some methods in test.
2017-06-13 16:47:58 +02:00
Tomasz Drwięga
172300158d
Merge branch 'master' into pubsub-docs
2017-06-13 16:30:08 +02:00
Tomasz Drwięga
df910277a2
Make empty params array optional for parity_subscribe.
2017-06-13 16:29:35 +02:00
Tomasz Drwięga
9994133446
Adding docs.
2017-06-13 14:07:39 +02:00
Jaco Greeff
8f5a863468
Package updates
2017-06-13 13:23:16 +02:00
Jaco Greeff
6ea932b1de
Update test for packages
2017-06-13 12:09:32 +02:00
Jaco Greeff
a2fdf38316
Additional merge fixes
2017-06-13 11:34:43 +02:00
Denis S. Soldatov aka General-Beck
6afe0b0612
fix builds
...
darwin rustup default stable
snap - allow failure
2017-06-13 12:21:44 +03:00
Jaco Greeff
7bbd48a2bd
Merge branch 'master' into ui-2
...
# Conflicts:
# js/package.json
# js/src/api/local/ethkey/worker.js
# js/src/modals/FirstRun/TnC/tnc.js
# js/src/modals/FirstRun/Welcome/welcome.js
# js/src/ui/Form/Input/input.js
# js/src/ui/VaultCard/Accounts/accounts.spec.js
# js/src/views/Accounts/accounts.js
# js/src/views/Application/TabBar/tabBar.js
# js/src/views/Settings/Views/defaults.js
# js/src/views/Settings/Views/views.js
# js/webpack/app.js
# js/webpack/libraries.js
2017-06-13 11:02:38 +02:00
Marek Kotewicz
ca6e1aeb1b
Merge pull request #5827 from paritytech/mem-fix
...
Fixed mem write for empty slice
2017-06-13 09:39:58 +02:00
Denis S. Soldatov aka General-Beck
03de333de1
fix verify
2017-06-13 02:35:07 +03:00
Denis S. Soldatov aka General-Beck
42ad8bbdb0
Create cov.sh
...
add --verify
add RUSTFLAGS="-C link-dead-code"
2017-06-13 02:22:37 +03:00
Denis S. Soldatov aka General-Beck
2501334ed7
add CI variable
2017-06-13 01:37:03 +03:00
GitLab Build Bot
15f19fc026
[ci skip] js-precompiled 20170612-222804
2017-06-12 22:32:43 +00:00
Afri
f3874ffaf2
Fix party technologies ( #5810 )
2017-06-12 22:52:34 +02:00
arkpar
4b74f65ed8
Fixed mem write for empty slice v2
2017-06-12 22:45:57 +02:00
Arkadiy Paronyan
033a75888c
Revert "Fixed mem write for empty slice ( #5825 )" ( #5826 )
...
This reverts commit 6b874cedb8 .
2017-06-12 22:43:20 +02:00
Arkadiy Paronyan
6b874cedb8
Fixed mem write for empty slice ( #5825 )
2017-06-12 22:42:58 +02:00
Denis S. Soldatov aka General-Beck
5f01fb7f1a
remove nodejs 8 test stage
...
switch to RUST 1.18 and NodeJS 8.1
2017-06-12 23:40:57 +03:00
GitLab Build Bot
8eda5fcbbf
[ci skip] js-precompiled 20170612-164938
2017-06-12 16:53:40 +00:00
Maciej Hirsz
c768c302da
Merge pull request #5822 from paritytech/fix-tests
...
Fix JS tests
2017-06-12 18:12:13 +02:00
maciejhirsz
c7c05552f3
Fix rust, skip WASM till CI switches to Node 8+
2017-06-12 17:43:23 +02:00
maciejhirsz
788dd04600
Merge branch 'master' into fix-tests
2017-06-12 17:07:07 +02:00
Tomasz Drwięga
f55a69841d
Bump native-tls and openssl crates. ( #5817 )
2017-06-12 16:56:14 +02:00
maciejhirsz
41df8413fc
fix JS tests
2017-06-12 16:44:59 +02:00
Maciej Hirsz
b2a42f03eb
Public node WASM, performance and fixes ( #5734 )
2017-06-12 15:57:16 +02:00
Robert Habermeier
edea41d35e
enforce block signer == author field in PoA ( #5808 )
2017-06-12 12:54:34 +03:00
Tomasz Drwięga
75ac263961
Fix stack display in evmbin. ( #5733 )
...
* Fix stack display.
* Additional compatiblity fixes.
2017-06-09 12:31:03 +02:00
Tomasz Drwięga
4c516e1f6f
Disable UI if it's not compiled in. ( #5773 )
...
* Disable UI if it's not compiled in.
* Properly enabled/disable ui server depending on features.
2017-06-09 12:26:57 +02:00
Tomasz Drwięga
5c3ea4ec29
Require phrase confirmation. ( #5731 )
...
* Require phrase confirmation.
* Linting issues.
* Fix dialog title.
* Confirm a backup phrase.
* Confirm recovery phrase on fist run as well.
2017-06-09 12:25:14 +02:00
Anton Gavrilov
06eb561af5
Duration limit made optional for EthashParams ( #5777 )
...
* Duration limit made optional for EthashParams
* Forgotten space added
2017-06-09 12:24:23 +02:00
Afri
51ef847c64
Update Changelog for 1.6.8 ( #5798 )
...
* Update changelog for 1.6.8
* Add more changelog details for 1.6.8
* Fix date
2017-06-09 12:22:17 +02:00
Afri
1349b4ba07
Replace Ethcore comany name in T&C and some other places ( #5796 )
...
* Replace ethcore in terms and conditions
* Replace ethcore company name in various places
* Fix casing in t&c
2017-06-09 12:21:35 +02:00
Bas
4f63377ff2
Fix terminology distributed -> decentralized for Dutch i18n ( #5802 )
2017-06-09 12:21:10 +02:00
Tomasz Drwięga
f86457ffd1
PubSub for IPC. ( #5800 )
2017-06-09 12:20:37 +02:00
Afri
d368006526
Fix terminology distributed -> decentralized ( #5797 )
2017-06-09 12:20:08 +02:00
Guanqun Lu
cd3a1c1a94
use rust 1.18's new feature to boost the purge performance
2017-06-09 01:34:10 +08:00
Maciej Hirsz
dabd5b2cc8
Update required rust version
2017-06-08 19:25:35 +02:00
Arkadiy Paronyan
9418fcafb6
Disable compression for RLP strings ( #5786 )
2017-06-08 17:24:23 +02:00
Jaco Greeff
7f4a7abf49
Ui 2 provider for dapps ( #5799 )
...
* Import web3Provider
* Import api
* {Transport,Provider}/Ws -> WsSecure
* PostMessage provider with filters
* PromiseWrapper -> PromiseProvider
2017-06-08 17:14:02 +02:00
5chdn
ae8ff941f9
Fix terminology distributed -> decentralized
2017-06-08 14:10:35 +02:00
Jaco Greeff
c1599a3d85
Merge branch 'master' into ui-2
...
# Conflicts:
# js/src/ui/Balance/balance.js
2017-06-08 11:51:46 +02:00
Tomasz Drwięga
2e7f29cc9f
Merge branch 'master' into unlock
2017-06-08 09:21:04 +02:00
Tomasz Drwięga
c2a8415f78
Fix test.
2017-06-08 09:20:50 +02:00
Denis S. Soldatov aka General-Beck
0e36deec81
Merge pull request #5781 from elopio/update-snapcraft-source
...
update the source for the snapcraft package
2017-06-08 01:14:40 +03:00
Denis S. Soldatov aka General-Beck
317df7e6a6
fix CI lint
2017-06-07 22:05:44 +03:00
Denis S. Soldatov aka General-Beck
1fb11c23d8
port snap build
2017-06-07 21:53:36 +03:00
Tomasz Drwięga
52f7978d4d
Merge branch 'master' into unlock
2017-06-07 17:07:32 +02:00
Arkadiy Paronyan
b9b5c84417
Fixed default UI port for mac installer ( #5782 )
2017-06-07 16:27:26 +02:00
Jaco Greeff
882f963e6b
Block invalid account name creation ( #5784 )
...
* Additional non-empty phrase check (fromNew)
* Explicit canCreate check in create (not only on UI)
* BN instance check (fixes Geth imports)
* Fixup tests after better checks
* PR comments (Thanks @tomusdrw )
* Typo
2017-06-07 16:27:01 +02:00
Jaco Greeff
dec0c8ddd6
Merge branch 'master' into ui-2
2017-06-07 14:14:32 +02:00
Tomasz Drwięga
9773aa4c76
Update Cid/multihash/ring/tinykeccak ( #5785 )
...
* Updating ring,multihash,tiny-keccak
* Updating CID in ipfs.
2017-06-07 12:31:12 +02:00
Guanqun Lu
05aa960c25
use NULL_RLP, remove NULL_RLP_STATIC ( #5742 )
2017-06-07 11:58:39 +02:00
Tomasz Drwięga
19f01194b1
Blacklist empty phrase account. ( #5730 )
2017-06-07 11:34:53 +02:00
Leo Arias
6dd5297f8a
update the source for the snapcraft package
2017-06-07 05:21:10 +00:00
Tomasz Drwięga
139ee17d39
Small typos.
2017-06-06 18:45:33 +02:00
Tomasz Drwięga
f5d0fa2c21
Merge branch 'master' into unlock
2017-06-06 18:41:00 +02:00
Tomasz Drwięga
a5299bdb1a
Unlocking with secrets.
2017-06-06 18:06:40 +02:00
Arkadiy Paronyan
99bfef2801
EIP-211 RETURNDATACOPY and RETURNDATASIZE ( #5678 )
...
* EIP-211
* Optimized memory usage
* Optimized truncation
2017-06-06 18:47:12 +03:00
Denis S. Soldatov aka General-Beck
241de230bb
Update .gitlab-ci.yml
...
add snap build to tags, triggers
2017-06-06 16:19:11 +03:00
Jaco Greeff
bba1688981
Master merge updates (conflicts)
2017-06-06 11:24:43 +02:00
Jaco Greeff
6a480ffb5b
Merge branch 'master' into ui-2
2017-06-06 09:35:22 +02:00
Arkadiy Paronyan
ad6ea4fa49
Bump mio ( #5763 )
...
* Bump mio
* Fixed warnings
* Update mio to crates.
2017-06-05 20:40:40 +02:00
Denis S. Soldatov aka General-Beck
815f427c95
Update .gitlab-ci.yml
...
add rust beta&nigthly test for master
add more triggers
2017-06-05 15:44:37 +03:00
GitLab Build Bot
754abdb861
[ci skip] js-precompiled 20170604-110515
2017-06-04 11:09:12 +00:00
Tomasz Drwięga
8a364bbfaa
Fixing UI issues after UI server refactor ( #5710 )
...
* Self-sufficient secureApi.
* Updating embed.
* Linting issues.
2017-06-04 12:34:03 +02:00
GitLab Build Bot
e89d49d958
[ci skip] js-precompiled 20170603-131456
2017-06-03 13:18:47 +00:00
Tomasz Drwięga
68c8948294
fix WS server expose issue. ( #5728 )
2017-06-03 15:41:42 +03:00
Tomasz Drwięga
5ec5d2fa0b
Fix local transactions without condition. ( #5716 )
2017-06-03 15:41:31 +03:00
Tomasz Drwięga
45d8cc706c
Bump wordlist. ( #5748 )
2017-06-02 13:06:41 +02:00
Denis S. Soldatov aka General-Beck
d7e531c373
JS test Node 7 -> 8
2017-06-01 00:05:11 +03:00
DevOps Parity
c5c1978584
initial support snapcraft.io
...
create snapcraft.yaml for snapcraft.io
2017-05-31 21:17:44 +03:00
Jaco Greeff
a328eef8d9
UI 2 Api providers ( #5714 )
...
* Add providers
* Convert rpc calls to use provider
* Update SecureApi for provider
2017-05-31 12:08:04 +02:00
Guanqun Lu
5a20c63b70
two small changes in evm ( #5700 )
...
* add a simple test for is_push so that every small utility has a corresponding unit test
* split evm/factory.rs into two files as the TODO suggests
* style fixes according to review comments
2017-05-30 19:31:43 +02:00
Tomasz Drwięga
480741894b
JSON format printing pre-state. ( #5712 )
2017-05-30 19:30:15 +02:00
Nicolas Gotchac
c2c7231cad
Recover from empty phrase in dev mode ( #5698 )
...
* Add dev chain to isTest
* Fix signer
* Fix no condfition transactions
* Fix case : old parity
* Fix propTypes.
2017-05-30 19:28:50 +02:00
Jaco Greeff
265618f306
Merge branch 'master' into ui-2
2017-05-30 13:43:38 +02:00
Jaco Greeff
fd3c8bced7
UI2 fixes for Signer popup ( #5711 )
...
* Fix new origin shape
* Pass input types through (<input /> tag)
* Update build
2017-05-30 13:41:30 +02:00
Arkadiy Paronyan
e6a31e7543
EIP-210 BLOCKHASH changes ( #5505 )
...
* EIP-210
* comment
2017-05-30 11:52:33 +02:00
Jaco Greeff
d888190637
Merge branch 'master' into ui-2
...
# Conflicts:
# js/src/modals/FirstRun/Welcome/welcome.js
2017-05-30 10:45:48 +02:00
GitLab Build Bot
de4c9507e6
[ci skip] js-precompiled 20170529-225538
2017-05-29 22:59:31 +00:00
Robert Habermeier
158ebef566
Merge pull request #5708 from patrick99e99/master
...
fixes typo
2017-05-30 00:36:28 +02:00
Patrick Collins
b14145f23b
fixes typo
2017-05-29 14:29:55 -07:00
Arkadiy Paronyan
7c2c39cb11
bump rocksdb ( #5707 )
2017-05-29 18:37:35 +03:00
Arkadiy Paronyan
a4aec56d18
Fixed --datadir option ( #5697 )
...
* Fixed --datadir
* Removed evmbin lib
2017-05-29 15:15:54 +02:00
Jaco Greeff
fce0167991
Merge branch 'master' into ui-2
2017-05-29 09:42:47 +02:00
Craig O'Connor
3991178b8d
rpc -> weak to arc ( #5688 )
...
* helpers-1
* helpers2-impls1
* small adjustments1
* cleanup-2
* small changes
* helper-impl-cleanup-finished
* test-update
* merge fix
* merge fix
* merge fix2
* fix tests
* fix tests2
* fix tests3
2017-05-28 08:40:36 -04:00
Guanqun Lu
a246278727
typo fix ( #5699 )
2017-05-27 23:35:18 +03:00
Denis S. Soldatov aka General-Beck
1f0f27bc65
Dockerfile for hub.docker.com
2017-05-26 15:18:17 +03:00
Denis S. Soldatov aka General-Beck
a4a36422d4
Add Installed-Size to deb build
...
https://github.com/paritytech/parity/issues/4937
2017-05-26 14:56:51 +03:00
Tomasz Drwięga
543965411e
Revamping parity-evmbin ( #5696 )
...
* Revamping evmbin to support spec files, json format and subcalls.
* Fix formatting of usage.
2017-05-26 11:06:48 +02:00
Jaco Greeff
37c3f51f6e
Update deps for console refactor
2017-05-24 14:45:10 +02:00
Jaco Greeff
45c6cc6ac0
Merge branch 'master' into ui-2
2017-05-24 14:09:51 +02:00
Jaco Greeff
d33d54dbf9
Merge pre-update
2017-05-24 14:05:34 +02:00
GitLab Build Bot
bbbdd02a00
[ci skip] js-precompiled 20170524-104640
2017-05-24 10:50:29 +00:00
Nikolay Volf
e1fef5c732
Update dependencies and bigint api ( #5685 )
...
* update to latest bigint
* bump elastic array and deps
* fix rlp tests
* also update all smallvec deps
* fix doc test
* reduce parking in attempt to fix CI bug
* fix from/into electum bug
* remove duplicate imports
2017-05-24 12:31:33 +02:00
Tomasz Drwięga
cbcc369a2d
UI server refactoring ( #5580 )
...
* Full API in Authenticated WS server.
* Replacing UI server with Hyper.
* Solving CLI, RPCs and tests.
* Porting signer tests.
* Fixing origin recognition for dapps/rpc.
* Fixing tests. Adding parity-rpc-client to test.
* Dapps exposed as RPC method.
* JS code to support new connection scheme.
* Fixing dapps tests.
* Updating allowed origins/hosts to support web3.site.
* Fixing tests, fixing UI.
* Fixing tests.
* Removing invalid tests.
* Fixing merge.
* 404 fallback for UI
* Improve ContentFetcher constructor readability.
* Naming.
* Update .gitlab-ci.yml
fix CI lint error
* Fixing tests and linting issues.
* Fixing new tests.
* UI hosts.
* Submodules fix.
2017-05-24 12:24:07 +02:00
Nikolay Volf
7499efecf6
fix from/into electum bug ( #5686 )
2017-05-24 11:53:02 +02:00
Robert Habermeier
18c3e90dbf
Merge pull request #5671 from paritytech/guanqun-add-unit-tests
...
Guanqun add unit tests
2017-05-23 15:18:11 -04:00
Tomasz Drwięga
00cdc52323
Parity-PubSub as a separate API. ( #5676 )
...
* Parity-PubSub as a separate API.
* Fix tests.
* Fixes after merge.
2017-05-23 19:05:17 +03:00
Arkadiy Paronyan
dd004aba9f
EIP-140 ( #5477 )
2017-05-23 16:49:17 +03:00
Afri
2ab21acf11
Update CHANGELOG for 1.6.7 ( #5683 )
2017-05-23 15:28:41 +02:00
GitLab Build Bot
6b6555852c
[ci skip] js-precompiled 20170523-130314
2017-05-23 13:07:10 +00:00
Gav
8a54c91431
Merge branch 'add-unit-tests' of https://github.com/guanqun/parity into guanqun-add-unit-tests
2017-05-23 08:48:04 -04:00
Micah Zoltu
2092b805b6
Updated docs slightly. ( #5674 )
...
These docs _really_ need a lot of improvement (like what are the options that go in `{}`, but at least they are now not outright incorrect.
2017-05-23 08:37:27 -04:00
Nikolay Volf
53add78a28
Fix build ( #5684 )
...
* missing feature
* dapps update
2017-05-23 08:35:34 -04:00
Robert Habermeier
386cdb830d
Back-references for the on-demand service ( #5573 )
...
* header back-references for on demand
* initial back-reference implementation for on demand requests
* answer requests from cache
* answer requests from cache, add tests
* strongly typed responses for vectors of homogeneous requests
* fix fallout in RPC without optimizing
2017-05-23 12:39:25 +02:00
Robert Habermeier
aa41b48ba0
Dynamically adjust PIP request costs based on gathered data ( #5603 )
...
* beginnings of load timer
* initial load timer implementation
* saturating adds
* create flow params from distribution
* update request credits and acknowledgement
* mark cumulative cost dead code
* fix compilation
* tests
* supply load share and other params to lightprotocol params
* add file store
* fix ethsync compilation
* reshuffle constants
2017-05-23 12:31:09 +02:00
Marek Kotewicz
a8d99ae465
use cargo workspace ( #5601 )
...
* use cargo workspace
* removed profiles for non root packages
2017-05-23 12:28:22 +02:00
Tomasz Drwięga
f38cc8e182
Latest headers Pub-Sub ( #5655 )
...
* Signer subscription.
* Fixing RPC tests.
* Block Headers eth-pubsub.
* PubSub for light client.
* Fixing tests.
* Updating to proper jsonrpc version.
* Update to correct tests.
* Fixing tests.
2017-05-23 12:26:39 +02:00
Marek Kotewicz
92f5aa7e10
improved dockerfile builds ( #5659 )
...
* docker builds current branch instead of cloning the repo
* moved ADD command right before RUN cd parity in Dockerfiles
* update docker/README.md
* removed --no-cache from docker/README.md
2017-05-23 12:25:41 +02:00
Tomasz Drwięga
f47cbe0be6
Adding CLI options: port shift and unsafe expose. ( #5677 )
...
* Adding CLI option for port shift and unsafe expose.
* Fixing IPC path.
* Fix hosts when attempting to expose on all interfaces.
* Fixing test.
* Fix typo.
2017-05-23 12:24:32 +02:00
Jaco Greeff
368e3d1f51
Merge branch 'master' into ui-2
2017-05-22 11:50:15 +02:00
Craig O'Connor
7a4eb15b4c
Form fixes ( #5664 )
...
* label fix
* label-tx-row
* form fixes
2017-05-22 11:00:37 +02:00
keorn
532801f9d6
Report missing author in Aura ( #5583 )
...
* report missing block
* add a test validator set
* add a skip test
* clean up test
* report all skipped
2017-05-22 08:21:34 +02:00
Guanqun Lu
14b715bdc7
fix not build issue, only detect pure js folder
2017-05-21 10:44:20 +08:00
Gav
0a62117851
Merge branch 'add-unit-tests' of https://github.com/guanqun/parity into guanqun-add-unit-tests
2017-05-20 11:24:58 +02:00
Guanqun Lu
86b00a9271
typo fix ( #5669 )
2017-05-20 11:22:35 +02:00
Guanqun Lu
d35da909db
add asserts in ethash.rs
2017-05-20 12:12:16 +08:00
Guanqun Lu
73ad575306
add asserts in genesis.rs
2017-05-20 12:12:16 +08:00
Guanqun Lu
292eb1de62
add asserts in engine.rs
2017-05-20 12:12:16 +08:00
GitLab Build Bot
99a1636c62
[ci skip] js-precompiled 20170519-161414
2017-05-19 16:18:02 +00:00
Jaco Greeff
c944b2e632
Remove public middleware (temporary) ( #5665 )
2017-05-19 18:05:44 +02:00
GitLab Build Bot
ae0841598f
[ci skip] js-precompiled 20170519-154153
2017-05-19 15:45:53 +00:00
Jaco Greeff
637730996a
Remove additional polyfill ( #5663 )
2017-05-19 17:30:54 +02:00
Tomasz Drwięga
1a1d5e4a73
Importing accounts from files. ( #5644 )
...
* Importing accounts from files.
* whitespace
[ci:skip]
2017-05-19 17:14:47 +02:00
Guanqun Lu
d10ade1963
remove the deprecated options in rustfmt.toml ( #5616 )
...
* remove the deprecated options in rustfmt.toml
* add chain_one_line_max
* fix two issues spot by rustfmt
2017-05-19 17:12:20 +02:00
Nicolas Gotchac
84cab18120
Update the Console dapp ( #5602 )
...
* Init Console Dapp structure
* Watches and status
* First REPL and display
* Attaching console
* Selectable autocomplete
* working console // Display objects nicely
* Multilines in Console Dapps
* Better UI
* Eval on window object
* Save console gistory
* Adding views
* Add settings to the console dapp
* Add / remove Watches
* Add Snippets Cmponent
* Semi Working Snippets
* Working Snippets
* Adding CodeMirror features
* Removing old Console
* Add Static folder
2017-05-19 17:07:59 +02:00
Tomasz Drwięga
3ff72794e5
Create an account for chain=dev ( #5612 )
...
* implement From<&'static str> for Secret
* Dev account.
* Fix Secret semantics.
2017-05-19 17:06:36 +02:00
Jaco Greeff
e7abd3510a
Use babel-runtime as opposed to babel-polyfill ( #5662 )
...
* Add babel-runtime
* Add babel-transform-runtime plugin
* Remove babel-polyfill imports
* Remove babel-polyfill package
* Transform exports to work around webpack 2.2
2017-05-19 16:51:15 +02:00
Guanqun Lu
f96731c82b
add assets for seal.rs
2017-05-19 22:48:23 +08:00
Guanqun Lu
5c7c30cc4b
add asserts in spec param.rs
2017-05-19 22:48:23 +08:00
Guanqun Lu
a61b249d57
add asserts in tendermint.rs
2017-05-19 22:48:23 +08:00
Guanqun Lu
0b4eef48c5
add asserts in instantseal
2017-05-19 22:48:23 +08:00
Guanqun Lu
90b8b612cc
add asserts for spec::basic_authority
2017-05-19 22:48:23 +08:00
Guanqun Lu
c0a8eaa3bf
add asserts in spec::authority_round's unit test
2017-05-19 22:48:23 +08:00
Guanqun Lu
a0dd77ca01
add asserts in spec::validatorset's unit test
2017-05-19 22:48:23 +08:00
Guanqun Lu
f90802498f
add two asserts in unit tests for spec::authority_round
2017-05-19 22:48:23 +08:00
Guanqun Lu
cf0b8b7681
add several new tests for spec::account
2017-05-19 22:48:23 +08:00
Jaco Greeff
602115d81e
Merge branch 'master' into ui-2
...
# Conflicts:
# js/src/shell/Connection/connection.js
# js/src/ui/Icons/index.js
# js/src/views/Accounts/CreateAccount/RecoveryPhrase/recoveryPhrase.js
2017-05-19 14:55:13 +02:00
Denis S. Soldatov aka General-Beck
2fd44e6ce4
CI add test stage with node 7.x
2017-05-18 21:22:52 +03:00
GitLab Build Bot
23a4a22869
[ci skip] js-precompiled 20170518-113124
2017-05-18 11:35:53 +00:00
Jaco Greeff
aa9894711b
Connection dialog timestamp info ( #5554 )
...
* Timetsamp adjustment note
* Type & unneeded values
2017-05-18 12:46:30 +02:00
Guanqun Lu
6d81b8a49a
use copy_from_slice instead of for loop ( #5647 )
2017-05-18 12:46:14 +02:00
Robert Habermeier
b1eab698d2
Light friendly dapps ( #5634 )
...
* move native_contracts ABIs to JSON files, add urlhint
* port hash-fetch to futures, fix tests
* fix dapps compilation, defer async port to later
* activate dapps server in the light client
* better formatting
2017-05-18 12:44:09 +02:00
Craig O'Connor
6978e38752
style-fix ( #5649 )
2017-05-18 12:33:01 +02:00
GitLab Build Bot
95d9706fe1
[ci skip] js-precompiled 20170518-101141
2017-05-18 10:15:33 +00:00
Nicolas Gotchac
8b1f0b7cf4
Add Recover button to Accounts and warnings ( #5645 )
...
* Add Recover button to Accounts // Add Warnings
* Change to 11
* Add test net checks for empty recovery phrase
* Fix failing tests
2017-05-18 11:50:15 +02:00
Jaco Greeff
20bda5f5a0
Ui 2 components cleanups ( #5653 )
...
* Add autoFocus for search
* Remove old/unused renderer
* LabelComponent -> LabelWrapper
* Consistent LabelWrapper usage
2017-05-18 11:48:53 +02:00
Jaco Greeff
e0927f099e
Merge branch 'master' into ui-2
2017-05-18 11:26:09 +02:00
Jaco Greeff
4b5a1d01ce
Merge remote-tracking branch 'origin/ui-2' into ui-2
2017-05-18 10:07:35 +02:00
Craig O'Connor
78461d8a74
flow ( #5606 )
...
* FLOW
* ui-2-one more fix
2017-05-18 10:06:59 +02:00
GitLab Build Bot
2ec51fc0ad
[ci skip] js-precompiled 20170517-144631
2017-05-17 14:50:24 +00:00
Tomasz Drwięga
379b920d49
Update eth_sign docs. ( #5631 )
2017-05-17 16:21:39 +02:00
Tomasz Drwięga
240704fb54
Proper signer Pub-Sub for pending requests. ( #5594 )
...
* Signer subscription.
* Fixing RPC tests.
* Improve notification performance.
2017-05-17 16:20:41 +02:00
Jaco Greeff
ab86f9e696
Merge branch 'master' into ui-2
2017-05-17 14:20:07 +02:00
Marek Kotewicz
da8be072fa
Merge pull request #5641 from paritytech/bigint-bump
...
Bump bigint to 1.0.5
2017-05-17 13:33:05 +02:00
Robert Habermeier
4c5e4ac8da
PoA warp implementation ( #5488 )
...
* separate modules for consensus snapshot chunks
* bulk of authority warp logic
* finish authority warp implementation
* squash warnings and enable authority snapshot mode
* test harness for PoA
* fiddle with harness
* epoch generation proof fixes
* update constructor code
* store epoch transition proof after block commit
* basic snap and restore test
* use keyvaluedb in state restoration
* decompress chunks
* fix encoding issues
* fixed-to-contract-to-contract test
* implement ancient block import
* restore genesis transition in PoW snapshot
* add format version method to snapshot components
* supported version numbers in snapshot_components
* allow returning of ancient epoch transitions
* genesis hash mismatch check
* remove commented code
2017-05-17 12:41:33 +02:00
Robert Habermeier
5d973f8ef5
Merge pull request #5419 from paritytech/on-demand-priority
...
Improve on-demand dispatch and add support for batch requests
2017-05-17 12:28:27 +02:00
Tomasz Drwięga
fa4426c814
Bump bigint.
2017-05-17 10:07:20 +02:00
Robert Habermeier
c7cf43d1c1
improve assertion
2017-05-16 17:24:12 +02:00
GitLab Build Bot
7626ddc9c3
[ci skip] js-precompiled 20170516-145955
2017-05-16 15:03:40 +00:00
Jaco Greeff
f7ea667140
Merge branch 'master' into ui-2
2017-05-16 17:03:17 +02:00
Nicolas Gotchac
8642300d74
Use default account for sending transactions ( #5588 )
...
* Add default account for Wallet Creation
* Use default account by default, save current used account
* Fix tests
2017-05-16 15:38:16 +01:00
Jaco Greeff
673cde3c0b
Ui 2 cleanups (unused components, shared assets) ( #5636 )
...
* Remove unused components
* Move to dapp/index.js
* Move assets to @parity/shared
2017-05-16 16:01:11 +02:00
Jaco Greeff
95f6f70d8f
Ui 2 complete MUI removal ( #5635 )
...
* Convert DateTime input component
* Remove muiTheme context
2017-05-16 14:46:48 +02:00
GitLab Build Bot
48ddd8b312
[ci skip] js-precompiled 20170516-115901
2017-05-16 12:04:56 +00:00
Jaco Greeff
31be9d25f3
Merge branch 'master' into ui-2
...
# Conflicts:
#
js/src/shell/Signer/components/TransactionPendingFormConfirm/transaction
PendingFormConfirm.js
# js/src/ui/Container/Title/title.js
# js/src/views/Application/Snackbar/snackbar.js
# js/src/views/Status/Peers/peers.js
2017-05-16 13:30:19 +02:00
Jaco Greeff
665998e797
Ui 2 mui to sui conversion ( #5633 )
...
* Split chip rendering from input
* Slider component
* Render Chip without MUI
* Adjust InputChip styling
* Remove mui chip input
* Remove mui-chip-input from build
* Convert input to sui
2017-05-16 12:25:47 +02:00
Nicolas Gotchac
0f1a857576
Add peer management to the Status tab ( #5566 )
...
* Add peer management to the Status tab
* Fix propTypes issue
2017-05-16 11:01:55 +01:00
keorn
945c1a9478
add monotonic transition to kovan ( #5587 )
2017-05-15 21:34:01 +01:00
Tomasz Drwięga
879195397e
Decrypting for external accounts. ( #5581 )
2017-05-15 18:59:41 +02:00
Jaco Greeff
c27d96a4f1
Ui 2 additional MUI replacements ( #5623 )
...
* Loader spinner
* Progressbar conversion
* Update Progress
* Transfer operational again
* Remove List/ListItem from features
* Remove extra animation
* Remove iconButton
* Remove underline(input to be replaced)
* Convert Sort to Popup
* Remove unused AutoComplete component
* Simplify ModalBox
* Allow empty Actionbar
* Adjust shapeshift icon
* Simplify MUI theme (before removal)
* Update tests
2017-05-15 14:49:47 +02:00
Jaco Greeff
c5fa9844f2
Merge branch 'master' into ui-2
2017-05-15 10:03:51 +02:00
Robert Habermeier
4df1772078
Merge pull request #5595 from paritytech/no-warp-if-disabled
...
only enable warp sync when engine supports it
2017-05-13 15:04:06 +02:00
Robert Habermeier
f8279bb7bb
code cleanup with macro
2017-05-12 18:00:01 +02:00
Robert Habermeier
2a6f38c587
removing slienced warning
2017-05-12 17:53:10 +02:00
Robert Habermeier
909f3d76d8
optimize back-reference filling
2017-05-12 17:25:02 +02:00
Jaco Greeff
9bc82543ee
Merge branch 'master' into ui-2
2017-05-12 17:19:50 +02:00
Robert Habermeier
2d87f562f6
address grumbles
2017-05-12 17:16:38 +02:00
Jaco Greeff
7cdddd344b
Ui 2 remove mui from views & shell ( #5613 )
...
* Stepper from semantic-ui
* Tabs component
* ui/Tabs in loadContract
* Adapt Dropdown events
* Remove direct use of semantic-ui
* Remove IconButton & Subheader
* Remove IconMenu
* ui/List & List.Item
* Be explicit in context props
2017-05-12 17:06:53 +02:00
Marek Kotewicz
b1f6112c5c
Merge pull request #5586 from guanqun/doc-fix
...
fix the doc of installing rust
2017-05-12 16:35:47 +02:00
Marek Kotewicz
c38e33ca8b
Merge pull request #5584 from guanqun/small-fixes
...
Small fixes
2017-05-12 16:34:49 +02:00
Svyatoslav Nikolsky
e6ecd05308
SecretStore: remove session on master node ( #5545 )
...
* ECDKG protocol prototype
* added test for enc/dec math
* get rid of decryption_session
* added licenses
* fix after merge
* get rid of unused serde dependency
* doc
* decryption session [without commutative enc]
* failed_dec_session
* fixed tests
* added commen
* added more decryption session tests
* helper to localize an issue
* more computations to localize error
* decryption_session::SessionParams
* added tests for EC math to localize problem
* secretstore network transport
* encryption_session_works_over_network
* network errors processing
* connecting to KeyServer
* licenses
* get rid of debug println-s
* fixed secretstore args
* encryption results are stored in KS database
* decryption protocol works over network
* enc/dec Session traits
* fixing warnings
* fix after merge
* on-chain ACL checker proto
* fixed compilation
* fixed compilation
* finally fixed <odd>-of-N-scheme
* temporary commented test
* 1-of-N works in math
* scheme 1-of-N works
* updated AclStorage with real contract ABI
* remove unnecessary unsafety
* fixed grumbles
* wakeup on access denied
* encrypt secretstore messages
* 'shadow' decryption
* fix grumbles
* lost files
* secretstore cli-options
* decryption seccion when ACL check failed on master
* disallow regenerating key for existing document
* removed obsolete TODO
* fix after merge
* switched to tokio_io
* fix after merge
* fix after merge
* fix after merge
* fix after merge
* fix after merge
* fixed test
* fix after merge
* encryption session errors are now fatal
* session timeouts
* autorestart decryption session
* remove sessions on completion
* exclude disconnected nodes from decryption session
* test for enc/dec session over network with 1 node
* remove debug printlns
* fixed 1-of-1 scheme
* drop for KeyServerHttpListener
* Use standard encryption and decryption (as in RPC)
* added some tests
* moved DEFAULT_MAC to ethcrypto
* rpc_secretstore_encrypt_and_decrypt
* serialization with "0x" prefix (RPC compatibility)
* secretstore RPC API
* fix after merge
* fixed typo
* secretstore_shadowDecrypt RPC
* enable secretstore RPCs by default
* fixed test
* SecStore RPCs available without SecStore feature
* fixed grumbles
* lost files
* added password argument to Parity RPCs
* update docs
* remove enc/dec session on master node
* lost file
* pass weak instead of arc
2017-05-12 14:36:19 +02:00
GitLab Build Bot
83a13ee0e6
[ci skip] js-precompiled 20170512-102851
2017-05-12 10:32:43 +00:00
Craig O'Connor
662a8317a5
run-clean ( #5607 )
2017-05-12 12:10:24 +02:00
Jaco Greeff
1243728725
Merge remote-tracking branch 'origin/ui-2' into ui-2
2017-05-12 12:06:58 +02:00
Jaco Greeff
5da7c32bdf
Ui 2 radios & imports ( #5609 )
...
* Remove mui IconButton
* Token type selection
* Convert RadioButtons
* RadioButtons consistency
* Import @parity/ui
* Import @parity/ui
* Explicit name for RadioButtons
* Convert to semantic Radio
2017-05-12 12:06:16 +02:00
Jaco Greeff
79e991d8a6
Merge branch 'master' into ui-2
2017-05-12 12:04:57 +02:00
Robert Habermeier
38ed39ebe0
Merge pull request #5591 from paritytech/relicense-rlp
...
relicense RLP to MIT/Apache2
2017-05-11 16:54:43 +02:00
Robert Habermeier
83325b5b72
Merge pull request #5597 from paritytech/ethsign
...
Fix eth_sign signature encoding.
2017-05-11 16:43:39 +02:00
Robert Habermeier
79f9e9b061
fix dependency graph
2017-05-11 15:37:11 +02:00
Robert Habermeier
8c86bd1b31
bump RLP version
2017-05-11 15:35:38 +02:00
Robert Habermeier
f299190e46
relicense ethcore-bigint
2017-05-11 15:34:35 +02:00
Tomasz Drwięga
feb7ac7ba8
Fix ethkey test.
2017-05-11 14:58:24 +02:00
Jaco Greeff
78b6de55b3
Ui 2 Select component conversion ( #5598 )
...
* Remove mui/Paper from PasswordManager
* Aliasses for @parity packages
* Remove mui/Card from contract queries
* Toggle component replacement (mui-only)
* Semantic-ui toggle component
* LabelComponent warpper for Toggle
* Convert Selectors
* Test fixes
* Fix case
2017-05-11 14:02:27 +02:00
Tomasz Drwięga
fc3e1a4f18
Fix eth_sign signature encoding.
2017-05-11 12:47:47 +02:00
Jaco Greeff
b1a390983b
Merge branch 'master' into ui-2
2017-05-11 09:57:39 +02:00
Craig O'Connor
85cf93e65d
Merge pull request #5559 from paritytech/menu
...
dropdowns
2017-05-10 23:48:40 -04:00
Denis S. Soldatov aka General-Beck
28b66d1b58
Update deb-build.sh
...
Ethcore -> Parity Technologies
2017-05-10 23:19:08 +03:00
GitLab Build Bot
2b30e0b5e0
[ci skip] js-precompiled 20170510-155435
2017-05-10 15:58:15 +00:00
Jaco Greeff
7c78dff386
Updates after merge (last remaining middleware nigglies)
2017-05-10 17:50:23 +02:00
Nicolas Gotchac
8146cbdae7
Check pending request on Node local transactions ( #5564 )
...
* Check pending request on Node
* Linting
* Liting
* Fix tests
2017-05-10 17:33:53 +02:00
Jaco Greeff
566b6a1967
Merge branch 'master' into ui-2
...
# Conflicts:
# js/src/shared/redux/middleware.js
# js/src/shared/redux/providers/registry/middleware.js
# js/src/shell/Application/application.js
# js/src/ui/Actionbar/actionbar.js
# js/src/ui/Button/button.js
# js/src/ui/Form/AddressSelect/addressSelect.js
# js/src/ui/Form/Input/input.js
# js/src/ui/MethodDecoding/methodDecoding.js
2017-05-10 17:29:07 +02:00
Robert Habermeier
56768ff237
only try to warp when engine supports it
2017-05-10 17:12:00 +02:00
GitLab Build Bot
710339d0a8
[ci skip] js-precompiled 20170510-143939
2017-05-10 14:43:30 +00:00
Nicolas Gotchac
eff4cde738
Add tooltips capabilities to buttons ( #5562 )
...
Add tooltips for buttons on ActionBar if text not visible
2017-05-10 16:19:01 +02:00
GitLab Build Bot
3e86b2e666
[ci skip] js-precompiled 20170510-134918
2017-05-10 13:52:55 +00:00
Nicolas Gotchac
0a16c350d1
Can't deploy without compiling Contract ( #5593 )
2017-05-10 15:24:24 +02:00
GitLab Build Bot
c58c253cbf
[ci skip] js-precompiled 20170510-131400
2017-05-10 13:17:46 +00:00
Nicolas Gotchac
5baccafb23
Add a warning when node is syncing ( #5565 )
...
* Add a warning when node is syncing
* Linting
* Linting
* PR Grumbles
2017-05-10 15:02:47 +02:00
Nicolas Gotchac
076b602343
Update registry middleware ( #5585 )
2017-05-10 14:42:26 +02:00
Nicolas Gotchac
860d6c01ed
Set block condition to BigNumber in MethodDecoding ( #5592 )
...
* Set block condition to BigNumber in MethodDecoding
* Add gt(0)
2017-05-10 14:41:52 +02:00
Jaco Greeff
35a5c4787b
Revert to original label (everything lowercase atm UI-wide)
2017-05-10 14:38:28 +02:00
Jaco Greeff
7799883adc
Fix tests
2017-05-10 14:31:55 +02:00
Jaco Greeff
c3ee7f04e5
Simplify Dropdown, pass label correctly
2017-05-10 14:27:04 +02:00
Jaco Greeff
1c262b2172
Merge branch 'ui-2' into menu
2017-05-10 13:47:36 +02:00
Jaco Greeff
b9c4e5b36c
Ui 2 depends & fixes ( #5590 )
...
* File paths
* Align balance overlays & sizes
* Copy works as expected
* Re-arrange imports
* Icon props
* Move packages to their original dependencies
* Dependencies to packages
* Update test babel overrides
2017-05-10 13:23:14 +02:00
Robert Habermeier
a2fe46f8b3
use bigint on crates.io
2017-05-10 13:16:24 +02:00
Robert Habermeier
bccf58df51
relicense RLP to MIT/Apache2
2017-05-10 13:03:30 +02:00
Robert Habermeier
0fd3e36c23
Merge branch 'master' into on-demand-priority
2017-05-10 12:18:30 +02:00
Guanqun Lu
a4b0e0c93c
fix the doc of installing rust
...
multirust is deprecated.
2017-05-10 17:13:40 +08:00
oconnorct1
4944f59118
style fix
2017-05-09 21:13:04 -04:00
oconnorct1
a0929c4c90
style fix
2017-05-09 21:12:41 -04:00
oconnorct1
66843a349d
SemanticButton
2017-05-09 21:08:05 -04:00
oconnorct1
f014891288
Merge branch 'menu' of github.com:paritytech/parity into menu
2017-05-09 21:07:10 -04:00
oconnorct1
19d97136a5
grumbles
2017-05-09 21:06:11 -04:00
oconnorct1
68cbd87bc2
grumbles
2017-05-09 21:04:56 -04:00
Guanqun Lu
04eef37cad
remove the extra $ in front of a flag
2017-05-09 23:47:34 +08:00
Guanqun Lu
cd693dcf3e
typo fix
2017-05-09 23:46:46 +08:00
Jaco Greeff
861cbb874b
Ui 2 ui ( #5582 )
...
Ui 2 small UI fixes
2017-05-09 17:31:48 +02:00
Robert Habermeier
9358f81ac1
fix indentation
2017-05-09 14:24:45 +02:00
Jaco Greeff
4007865bec
Merge branch 'ui-2-fixes' into ui-2
2017-05-09 14:23:03 +02:00
Jaco Greeff
7623455cb6
Snackbar update
2017-05-09 14:20:36 +02:00
Jaco Greeff
9f91c0490c
Merge branch 'master' into ui-2
2017-05-09 14:10:24 +02:00
Jaco Greeff
7785fa3938
Fix JS header (// comments for JS)
2017-05-09 14:06:06 +02:00
Jaco Greeff
36b437270b
Remove Card completely
2017-05-09 14:04:58 +02:00
GitLab Build Bot
518b6e647b
[ci skip] js-precompiled 20170509-115458
2017-05-09 11:58:48 +00:00
Jaco Greeff
c37c579585
Merge branch 'ui-2' into menu
2017-05-09 13:50:47 +02:00
Jaco Greeff
40744d1bd2
Merge branch 'master' into ui-2
2017-05-09 13:47:29 +02:00
GitLab Build Bot
9947493977
[ci skip] js-precompiled 20170509-112134
2017-05-09 11:25:44 +00:00
Nicolas Gotchac
e5ff36f1f1
Load the sources immediatly in Contract Dev ( #5575 )
2017-05-09 12:56:35 +02:00
Nicolas Gotchac
d83d938ee3
Remove formal verification messages ( #5574 )
2017-05-09 12:56:20 +02:00
Nicolas Gotchac
c5116e5049
Fix event params decoding when no names for parameters #5409 ( #5567 )
2017-05-09 12:56:08 +02:00
Nicolas Gotchac
1288b4b28f
Do not convert to Dates twice ( #5563 )
...
* Don't convert Dates twice
* Take string dates into account
2017-05-09 12:55:52 +02:00
Nicolas Gotchac
df9096df80
Fix Multisig wallet settings ( #5560 )
...
* Improve add/remove owner in Wallet (use changeOwner)
* fix linting
2017-05-09 12:55:35 +02:00
Jaco Greeff
0a36ba54dc
Merge branch 'ui-2-move' into ui-2
2017-05-09 12:46:23 +02:00
Jaco Greeff
af53a8da83
Add missing package files
2017-05-09 12:46:00 +02:00
Jaco Greeff
4c28ef40b7
Ui 2 shared package (redux, mobx, utils) ( #5579 )
...
* Create @parity/shared
* Move ~/util to shared/util
* Move ~/contracts to shared/contracts
* Move ~/config to shared/config
* Move ~/environment to shared/environment
* Updated paths
* Move ~/mobx to shared/mobx
* Move ~/redux to shared/redux
* Add shared to test babel compile
2017-05-09 12:01:44 +02:00
Jaco Greeff
073564b508
Merge branch 'master' into ui-2
2017-05-09 10:11:13 +02:00
YaNing Zhang
0bd4d5bb0c
Typo ( #5547 )
2017-05-07 14:33:52 +02:00
oconnorct1
43629d0fd4
card / update dropdown
2017-05-07 02:17:31 -04:00
Tomasz Drwięga
1617264b69
Generic PubSub implementation ( #5456 )
...
* Generic PubSub
* Adding more tests.
* Fix submodules.
* Remove PartialEq
* Actually remove the implementation.
* Update mod.rs
* Update mod.rs
2017-05-06 13:24:18 +02:00
Gav Wood
91d6f14e3c
Fix CI paths. ( #5570 )
2017-05-06 13:24:00 +02:00
Robert Habermeier
6dd1fe0312
reorg into blocks before minimum history ( #5558 )
2017-05-05 15:01:19 +01:00
Arkadiy Paronyan
ed7c366b90
EIP-86 fixes ( #5506 )
2017-05-05 15:00:40 +01:00
Svyatoslav Nikolsky
8b9adb4d74
Secretstore RPCs + integration ( #5439 )
...
* ECDKG protocol prototype
* added test for enc/dec math
* get rid of decryption_session
* added licenses
* fix after merge
* get rid of unused serde dependency
* doc
* decryption session [without commutative enc]
* failed_dec_session
* fixed tests
* added commen
* added more decryption session tests
* helper to localize an issue
* more computations to localize error
* decryption_session::SessionParams
* added tests for EC math to localize problem
* secretstore network transport
* encryption_session_works_over_network
* network errors processing
* connecting to KeyServer
* licenses
* get rid of debug println-s
* fixed secretstore args
* encryption results are stored in KS database
* decryption protocol works over network
* enc/dec Session traits
* fixing warnings
* fix after merge
* on-chain ACL checker proto
* fixed compilation
* fixed compilation
* finally fixed <odd>-of-N-scheme
* temporary commented test
* 1-of-N works in math
* scheme 1-of-N works
* updated AclStorage with real contract ABI
* remove unnecessary unsafety
* fixed grumbles
* wakeup on access denied
* encrypt secretstore messages
* 'shadow' decryption
* fix grumbles
* lost files
* secretstore cli-options
* decryption seccion when ACL check failed on master
* disallow regenerating key for existing document
* removed obsolete TODO
* fix after merge
* switched to tokio_io
* fix after merge
* fix after merge
* fix after merge
* fix after merge
* fix after merge
* fixed test
* fix after merge
* encryption session errors are now fatal
* session timeouts
* autorestart decryption session
* remove sessions on completion
* exclude disconnected nodes from decryption session
* test for enc/dec session over network with 1 node
* remove debug printlns
* fixed 1-of-1 scheme
* drop for KeyServerHttpListener
* Use standard encryption and decryption (as in RPC)
* added some tests
* moved DEFAULT_MAC to ethcrypto
* rpc_secretstore_encrypt_and_decrypt
* serialization with "0x" prefix (RPC compatibility)
* secretstore RPC API
* fix after merge
* fixed typo
* secretstore_shadowDecrypt RPC
* enable secretstore RPCs by default
* fixed test
* SecStore RPCs available without SecStore feature
* fixed grumbles
* lost files
* added password argument to Parity RPCs
* update docs
* lost file
2017-05-05 14:57:29 +01:00
Jaco Greeff
d91fae4e54
UI 2 tests & webpack dapp build updates/fixes ( #5561 )
...
* Tests are executing again
* Fix tests
* Add missing contextTypes
* IdentityIcon without Connect()
* Update ~/ui tests
* Update spec locations
* Filename case
* Fix playground dapp build
2017-05-05 15:14:05 +02:00
GitLab Build Bot
0d8920347a
[ci skip] js-precompiled 20170505-084643
2017-05-05 08:50:23 +00:00
GitLab Build Bot
4a2ad9fc2a
[ci skip] js-precompiled 20170505-083410
2017-05-05 08:38:11 +00:00
Jaco Greeff
9b025cf8c1
Merge branch 'master' into ui-2
...
# Conflicts:
# js/src/views/ContractDevelop/store.js
2017-05-05 10:08:10 +02:00
Nicolas Gotchac
25853b915e
Fixes Parity Bar position ( #5557 )
2017-05-05 10:00:45 +02:00
Nicolas Gotchac
d4dc58eafe
Fix #4277 ( #5556 )
2017-05-05 10:00:31 +02:00
Nicolas Gotchac
eb316fcb9c
Fix issues in Contract Development view ( #5555 )
...
* Better errors in contract dev
* Use RAW Git instead of Github Raw URLs (better CORS support)
* Network first for Solc list
* Don't use importScript n Worker // update rawgit to use CDN
2017-05-05 10:00:16 +02:00
oconnorct1
34bdf61cf0
dropdowns
2017-05-05 03:04:48 -04:00
Denis S. Soldatov aka General-Beck
951dc757f8
fix docker build (ethcore+parity hub's)
2017-05-04 23:46:25 +03:00
GitLab Build Bot
f5bfb208e7
[ci skip] js-precompiled 20170504-161940
2017-05-04 16:23:12 +00:00
Maciej Hirsz
d5683d2016
Added missing methods ( #5542 )
...
* Added missing methods
* Adding to Parity.js
2017-05-04 17:58:01 +02:00
Jaco Greeff
5d78488fef
Merge branch 'master' into ui-2
2017-05-04 13:58:40 +02:00
Robert Habermeier
de1f7ee39b
option to disable persistent txqueue ( #5544 )
...
* option to disable persistent txqueue
* New option goes with kin
2017-05-04 12:13:50 +02:00
Craig O'Connor
c1f07c3329
Mui-be-gone-3 ( #5546 )
...
* mui-be-gone
* second
* mui-be-gone-3
* updates
* ups and ups
* oops
* Revert to changes in removed files from ui-2
* Revert to stateless component
2017-05-04 11:03:55 +02:00
Jaco Greeff
f34a0346bc
Cleanup ~/util ( #5553 )
2017-05-04 10:40:52 +02:00
Jaco Greeff
c7949e2fc3
Merge branch 'master' into ui-2
2017-05-04 10:39:46 +02:00
Nikolay Volf
74044f4821
bump jsonrpc & bytes ( #5552 )
2017-05-04 10:21:33 +03:00
Denis S. Soldatov aka General-Beck
8fdda2f5b7
Update .gitlab-ci.yml
...
fix nightly test
- rustup default nightly
2017-05-03 17:56:10 +03:00
Denis S. Soldatov aka General-Beck
15c89a8fff
add docker build for hub.docker.com/r/parity
2017-05-03 17:31:56 +03:00
GitLab Build Bot
160183b6e8
[ci skip] js-precompiled 20170503-123121
2017-05-03 12:34:57 +00:00
Jaco Greeff
539164945a
Merge branch 'master' into ui-2
2017-05-03 14:19:47 +02:00
Jaco Greeff
70e87677b3
Retrieve block headers only for header-only info ( #5480 )
...
* Add parity_getBlockHeaderByNumber
* Use parity_getBlockHeaderByNumber for retrieval
2017-05-03 14:12:06 +02:00
Jaco Greeff
2f9e05830b
Create ~/ui/Form/Checkbox component ( #5543 )
2017-05-03 13:37:32 +02:00
Denis S. Soldatov aka General-Beck
0658e42dad
fix nightly published
...
add `nightly` to S3_BUCKET=builds-parity-published
2017-05-03 13:50:08 +03:00
Denis S. Soldatov aka General-Beck
7fd2051d2c
Merge pull request #5519 from paritytech/snap
...
add snap to CI
2017-05-03 13:43:07 +03:00
Craig O'Connor
c39952a727
Mui be gone 2 ( #5540 )
...
* mui-be-gone
* second
* Revert ~/dapp mui removal
* Overlay text color
2017-05-03 12:25:16 +02:00
Craig O'Connor
5323fb5e08
mui-be-gone ( #5539 )
...
* mui-be-gone
* Revert ~/dapp mui removal
2017-05-03 12:16:20 +02:00
Jaco Greeff
1c2580b4a6
Ui 2 shell updates ( #5541 )
...
* Stateless components
* Adjust borders
* Stateless for status
* Externalise link colors
* css lint
* stateless
* Create ui/IconCache, replacing redux
* Update Signer buttons
* Requests background
* Adjust request styling
* Stateless components
* ParityBar background alignment
* Shell updates
* Remove Tooltip
2017-05-03 10:46:09 +02:00
Jaco Greeff
a1502738f1
Merge branch 'master' into ui-2
2017-05-03 10:40:53 +02:00
keorn
a3d9cce7c5
Pass additional data when reporting ( #5527 )
...
* pass additional data when reporting
* checkout correct tests
2017-05-03 09:01:24 +02:00
Robert Habermeier
60bb0de9d6
Calculate post-constructors state root in spec at load time ( #5523 )
...
* apply contract constructors at spec load time
* debugging
* do trie updates in two stages
* add lint exception to newly-dead constructor
* squash warning in RPC tests
* kill dead accountdb constructors
* restore accountdb constructors under test configuration
* use provided state root in spec, if it exists
2017-05-03 09:00:02 +02:00
Denis S. Soldatov aka General-Beck
9cfb50f90f
Update .gitlab-ci.yml
...
build snap beta
2017-05-03 03:12:45 +03:00
Denis S. Soldatov aka General-Beck
5fd5c9e85c
Update .gitlab-ci.yml
...
fix typo arm64
2017-05-03 03:03:39 +03:00
Denis S. Soldatov aka General-Beck
2bb6546ed6
replace CI docker images to hub.docker.com/r/parity
2017-05-02 21:29:36 +03:00
Denis S. Soldatov aka General-Beck
09bd3a9642
update CI docker images
...
switch to hub.docker.com/r/parity
2017-05-02 20:45:19 +03:00
GitLab Build Bot
b17c6ec054
[ci skip] js-precompiled 20170502-161232
2017-05-02 16:16:27 +00:00
Nicolas Gotchac
a56b2f5993
Fix utf8 decoding ( #5533 )
...
* Fixes #5492
* Linting
2017-05-02 17:52:49 +02:00
Jaco Greeff
e7484d07aa
Ui 2 styling adjustments ( #5534 )
...
* Stateless components
* Adjust borders
* Stateless for status
* Externalise link colors
* css lint
* stateless
* Create ui/IconCache, replacing redux
* Update Signer buttons
* Requests background
* Adjust request styling
* Stateless components
* ParityBar background alignment
2017-05-02 17:50:44 +02:00
Jaco Greeff
b57e8f6f0d
Merge branch 'master' into ui-2
2017-05-02 13:40:05 +02:00
GitLab Build Bot
b0e4c913c0
[ci skip] js-precompiled 20170502-103844
2017-05-02 10:42:38 +00:00
Afri
77c8d588fa
Add CHANGELOG.md ( #5513 )
...
* Add CHANGELOG.md
* Add some more verbose CHANGELOG information for beta and stable releases
* Add dates to releases
2017-05-02 12:08:48 +02:00
Rien
02b54ff7e8
find . -type f -not -path './.*' -exec sed -i -e "s/ethcore\.io/parity.io/g" {} \; ( #5528 )
2017-05-02 11:41:09 +02:00
Arkadiy Paronyan
da2f684f18
Memory usage optimization ( #5526 )
2017-05-02 11:40:03 +02:00
Tomasz Drwięga
c39da9643e
Compose transaction RPC. ( #5524 )
2017-05-02 11:39:48 +02:00
Jaco Greeff
fa243cdf89
UI 2 Status dapp fixes ( #5531 )
...
* Stateless components
* Adjust borders
* Stateless for status
2017-05-02 11:14:18 +02:00
Denis S. Soldatov aka General-Beck
2ecdf111b0
fix path to artefacts
2017-04-28 16:45:59 +03:00
Jaco Greeff
4781d2e15a
Merge branch 'ui-2-styling' into ui-2
2017-04-28 15:33:49 +02:00
Denis S. Soldatov aka General-Beck
e9ebb2498b
parity_master_amd64.snap
2017-04-28 15:52:58 +03:00
Denis S. Soldatov aka General-Beck
a1aaead6a9
fix CI lint
2017-04-28 15:19:10 +03:00
Denis S. Soldatov aka General-Beck
e989e2f12c
add artifacts for snap
2017-04-28 15:16:40 +03:00
Craig O'Connor
bccb231899
Icons set two ( #5521 )
...
* semantic addition
* semantic addition
* icons
* iconset
* Fix lint from merge
* Remove extra file/moved
* Moved packages (ui dep)
* Change dapps to import from ~/ui/Icons
* Additional icons converted
* Typo
* Add, Send, Delete, Edit & Send icons
* set two
2017-04-28 13:51:20 +02:00
Jaco Greeff
dddefa9a72
panel background (develop)
2017-04-28 12:43:44 +02:00
Jaco Greeff
0745c019a3
AccountCard uses Container
2017-04-28 12:17:19 +02:00
Jaco Greeff
85711ca66d
Adjust Portal background mask
2017-04-28 12:03:20 +02:00
Jaco Greeff
278dfcdcc5
Merge remote-tracking branch 'origin/ui-2' into ui-2
2017-04-28 11:26:34 +02:00
Jaco Greeff
4c04b61f8a
Merge branch 'master' into ui-2
2017-04-28 11:26:24 +02:00
Jaco Greeff
37dd488579
UI 2 component & modal splits ( #5525 )
...
* Remove mui from Actionbar
* Add semantic-ui to vendor.js
* Stateless components
* Multi-item spacing
* Stateless components
* Stateless components
* Default font
* Context passing
* Move Vault modals into Vault dapp
* Move modals to their respective views
2017-04-28 11:21:05 +02:00
Denis S. Soldatov aka General-Beck
81c449fc99
update CentOS dockerfile
...
https://github.com/paritytech/parity/issues/5463
2017-04-28 01:17:20 +03:00
GitLab Build Bot
1ed0fedfd5
[ci skip] js-precompiled 20170427-165204
2017-04-27 16:56:27 +00:00
Tomasz Drwięga
28dcbc6426
Support external eth_sign ( #5481 )
...
* Display a QR for eth_sign requests.
* Support raw confirmation of eth_sign
* Fix ethkey issue on nightly.
* Fixing test.
* Fixing test.
2017-04-27 18:23:22 +02:00
Gav Wood
43175f17e4
Treat clock numbers as strings, not BigNums. ( #5449 )
2017-04-27 18:22:55 +02:00
Denis S. Soldatov aka General-Beck
e439b53652
switch to docker runner
2017-04-27 17:20:00 +03:00
Denis S. Soldatov aka General-Beck
011f6102a5
update gitlab-ci
2017-04-27 16:27:28 +03:00
Denis S. Soldatov aka General-Beck
2245863f04
add snap to CI
...
initial build snap package for parity
2017-04-27 16:14:51 +03:00
Jaco Greeff
d16cfc736d
UI 2 styling ( #5518 )
...
* [ci skip] js-precompiled 20170426-110849
* export topNavigate function
* Stateless components in shell
* Connection icon fill
* Parity overlay only in dapps
* Additional buttons
* Adjust toolbar styles
* Adjust ParityBar button styling
* Complete icon conversion
2017-04-27 13:28:02 +02:00
Craig O'Connor
c9d41beb28
Icons ( #5509 )
...
* semantic addition
* semantic addition
* icons
* iconset
* Fix lint from merge
* Remove extra file/moved
* Moved packages (ui dep)
* Change dapps to import from ~/ui/Icons
* Additional icons converted
* Typo
* Add, Send, Delete, Edit & Send icons
2017-04-27 11:32:59 +02:00
Jaco Greeff
d2cf1cbd0e
Fix shell links
2017-04-26 17:59:16 +02:00
Jaco Greeff
a33dd0108d
Merge branch 'ui-2-mui' into ui-2
2017-04-26 16:31:54 +02:00
Jaco Greeff
549367fcd6
Simplify
2017-04-26 16:31:13 +02:00
Jaco Greeff
6c702c7b6a
Correct import
2017-04-26 16:27:35 +02:00
Jaco Greeff
aabf08fd75
LinearProgress -> Progress
2017-04-26 16:23:41 +02:00
Jaco Greeff
34d68ccb73
CircularProgress -> Loading
2017-04-26 16:08:30 +02:00
Jaco Greeff
02eeefd73b
Last couple of dangling icons
2017-04-26 15:56:18 +02:00
Jaco Greeff
555e5b24f3
Adjust ActionBar ( #5514 )
2017-04-26 15:00:30 +02:00
Jaco Greeff
bdcf2a9c61
Fix CSS overrides
2017-04-26 14:22:08 +02:00
GitLab Build Bot
30b3b5e2a7
[ci skip] js-precompiled 20170426-110849
2017-04-26 11:12:52 +00:00
Craig O'Connor
2badd9778b
Semantic ui ( #5507 )
...
* semantic addition
* semantic addition
* semantic-ui into @parity/ui dependency
* Merge updates
* Update missing imports to use ~
* Clean @parity modules with clean
* Updated yarn.lock
2017-04-26 13:12:50 +02:00
Jaco Greeff
6797172ad4
Updated yarn.lock
2017-04-26 13:08:31 +02:00
Jaco Greeff
95eeca09b7
Merge branch 'master' into ui-2
2017-04-26 12:39:28 +02:00
Jaco Greeff
3d9deb7770
npm cleanups ( #5512 )
...
* Cleanup @parity modules in npm run clean
* Remove top-level yarn files (only in js)
2017-04-26 12:38:21 +02:00
Jaco Greeff
1cd0350f83
Merge branch 'master' into ui-2
2017-04-26 12:31:10 +02:00
GitLab Build Bot
012615ae46
[ci skip] js-precompiled 20170426-101558
2017-04-26 10:19:53 +00:00
Jaco Greeff
17448b370c
Merge branch 'master' into ui-2
2017-04-26 11:35:49 +02:00
Craig O'Connor
cf904b6b2f
Export acc js ( #4973 )
...
* Export account RPC
* Removing GethDirectory and ParityDirectory
* js export accounts as json
* js export accounts as json
* api - then - catch
* final touches
* pass
* oops
* individual accounts
* refactoring
* refactor one
* refactor one
* refactor two
* some grumble fixes
* file name changes
* constructor
* constructor
* git recognize file name change
* spec and updates
* specs
* one tiny fix
* one tiny fix
* grumbles
* more grumbles
* sliders
* ff
* pointer default
* grumbles
* almost ready
* lots of updates
* accountList
* stupid debuglog
* bug fix
* bug fix
* some more good ol fashioned updates
* filter accounts
* clean
* update spec
* ff
* ff-f
* balances fix
2017-04-26 11:34:48 +02:00
Craig O'Connor
3be3b78c90
YARN ( #5395 )
...
* YARN
* update package.json
* update package.json
* yarn updates
* npm
2017-04-26 11:33:29 +02:00
Jaco Greeff
8fc453658b
Fix linting issues ( #5511 )
2017-04-26 11:10:36 +02:00
Shaoping
3344d96329
Chinese Translation ( #5460 )
...
* Update account.js
* Update accounts.js
* finished writeContract.js translate
* translated web, walletSetting
* 添加注释
* 添加注释
* 翻译1
* 翻译1,存疑1
* 翻译1,没毛病
* 翻译1,存疑1
* Translated addAddress & addContract
* 翻译1
* Translated connection.js
* Translated contract.js
* Translated contracts.js
* translated dapps.js
* translated deleteAccount
* Translated createWallet.js
* Translated editMeta.js
* Translated errors.js
* Translated extension.js
* translated deployContract
* Translated executeContract.js
* Update home.js
* Translated home.js
* Translated loadContract.js
* Translated parityBar.js
* translated faucet
* Translated passwordChange.js
* Translated saveContract.js
* translated firstRun
* translated tabBar
* Commented out all ENG
* translated transfer.js
* translated txEditor.js
* Translated settings.js
* translated ui.js
* Translated shapeshift.js
* translated wallet.js
* Translated signer.js
* translated upgradParity.js
* Translated status.js
* translated verification.js
* Translated vaults.js
* translated ui.js
* zh-tw translation
* translated account.js
* translated accounts.js
* translated accounts.js
* translated address.js
* translated addressSelect.js
* translated addresses.js
* translated application.js
* translated dapp.js
* translated ui.js
* translated txEditor.js
* update zh-Hant-TW translation
* enable zh-Hant-TW
2017-04-26 10:57:19 +02:00
Jaco Greeff
2f0ce06cc1
Ui 2 shell ( #5510 )
...
* Split application into ~/shell
* reset.css back to index
2017-04-26 10:56:31 +02:00
Svyatoslav Nikolsky
1a262048a6
Fixing secretstore TODOs - part 2 ( #5416 )
...
* ECDKG protocol prototype
* added test for enc/dec math
* get rid of decryption_session
* added licenses
* fix after merge
* get rid of unused serde dependency
* doc
* decryption session [without commutative enc]
* failed_dec_session
* fixed tests
* added commen
* added more decryption session tests
* helper to localize an issue
* more computations to localize error
* decryption_session::SessionParams
* added tests for EC math to localize problem
* secretstore network transport
* encryption_session_works_over_network
* network errors processing
* connecting to KeyServer
* licenses
* get rid of debug println-s
* fixed secretstore args
* encryption results are stored in KS database
* decryption protocol works over network
* enc/dec Session traits
* fixing warnings
* fix after merge
* on-chain ACL checker proto
* fixed compilation
* fixed compilation
* finally fixed <odd>-of-N-scheme
* temporary commented test
* 1-of-N works in math
* scheme 1-of-N works
* updated AclStorage with real contract ABI
* remove unnecessary unsafety
* fixed grumbles
* wakeup on access denied
* encrypt secretstore messages
* 'shadow' decryption
* fix grumbles
* lost files
* secretstore cli-options
* decryption seccion when ACL check failed on master
* disallow regenerating key for existing document
* removed obsolete TODO
* fix after merge
* switched to tokio_io
* fix after merge
* fix after merge
* fix after merge
* fix after merge
* fix after merge
* fixed test
* fix after merge
* encryption session errors are now fatal
* session timeouts
* autorestart decryption session
* remove sessions on completion
* exclude disconnected nodes from decryption session
* test for enc/dec session over network with 1 node
* remove debug printlns
* fixed 1-of-1 scheme
* drop for KeyServerHttpListener
* added some tests
* fixed typo
2017-04-25 21:34:03 +02:00
cdetrio
87ce264926
fix json format of state snapshot ( #5504 )
2017-04-25 19:08:28 +02:00
Nikolay Volf
9d6c50ea2f
Bump jsonrpc version ( #5489 )
...
* bump jsonrpc version
* also dependant crates
* tokio_uds also
2017-04-25 19:48:31 +03:00
Robert Habermeier
35958a0965
Merge pull request #5454 from paritytech/aura-contract-warp
...
Groundwork for generalized warp sync
2017-04-25 17:58:13 +02:00
Jaco Greeff
cdab1ebc04
Default font color
2017-04-25 17:18:23 +02:00
Leo Arias
80a58eea7b
Add the packaging metadata to build the parity snap ( #5496 )
...
* Add the packaging metadata to build the parity snap
* Move the snapcraft.yaml to scripts
2017-04-25 16:20:57 +02:00
Jaco Greeff
851003c07c
UI 2 light styling (placeholder until component move) ( #5503 )
...
* Adjust cards
* Clickable TxRow
* Modal background adjustment (stop-gap)
* Adjust container to light
* UI light updates
2017-04-25 15:41:46 +02:00
Jaco Greeff
ac138f6a4c
Remove ParityBackground ( #5501 )
2017-04-25 11:53:19 +02:00
Jaco Greeff
b749718feb
Merge branch 'master' into ui-2
...
# Conflicts:
# js/src/views/Signer/RequestsPage/requestsPage.js
2017-04-25 11:10:23 +02:00
Jaco Greeff
234b8dd592
Dapp with params (Account, Address & Contract) ( #5500 )
...
* Allow passing hash through to dapp
* Add allet view
* Add Contract & Address links
2017-04-25 11:07:11 +02:00
GitLab Build Bot
c9b2a7a980
[ci skip] js-precompiled 20170425-082717
2017-04-25 08:31:15 +00:00
Craig O'Connor
f7d5d6c0cd
Cancel tx JS ( #4958 )
...
* Remove transaction RPC
* Bumping multihash and libc
* Updating nanomsg
* bump nanomsg
* cancel tx
* cancel-tx-js
* cancel-tx-js
* cancel-tx-js
* cancel-tx-hs
* cancel-tx-js
* cancel-tx-js
* cancel-tx-js
* small fixes
* edit & time till submit
* edit & time till submit
* updates
* updates
* udpates
* udpates
* grumbles
* step 1
* Wonderful updates
* ready
* small refact
* small refact
* grumbles 1
* ffx2
* good ol' fashioned updates
* latest and greatest
* removeHash
* removeHash
* spec
* fix 1
* fix 1
* fix 2
* fix 2
* ff
* ff
* ff
* updates
2017-04-25 10:08:09 +02:00
Jaco Greeff
22497e5133
Update after source move
2017-04-24 17:45:53 +02:00
Jaco Greeff
719023e949
Navigate to dapp from dapp (WIP)
2017-04-24 17:41:47 +02:00
Jaco Greeff
2e1b05940f
Router/Route usage consistency between dapps
2017-04-24 15:37:53 +02:00
Jaco Greeff
1d566a85b2
Convert missing icons for ~/ui import
2017-04-24 15:15:25 +02:00
Jaco Greeff
831e52ea07
Request view as dapp completed
2017-04-24 14:59:22 +02:00
Jaco Greeff
1725c708fe
Requests (WIP)
2017-04-24 13:40:23 +02:00
Jaco Greeff
0c70cee503
Contracts & Contract develop as dapp
2017-04-24 13:21:22 +02:00
Robert Habermeier
6a5702f27c
address grumbles
2017-04-24 13:14:50 +02:00
Jaco Greeff
84d1151a1f
Accounts as dapp
2017-04-24 12:45:01 +02:00
Jaco Greeff
3ce9071eb9
Addresses as dapp
2017-04-24 12:20:12 +02:00
Jaco Greeff
ec37cf6700
Settings running as dapp
2017-04-24 11:21:04 +02:00
Jaco Greeff
cda12ec995
Remove unused RpcCalls
2017-04-24 10:52:08 +02:00
Jaco Greeff
bc0ea154df
Remove html background
2017-04-24 10:05:45 +02:00
Jaco Greeff
a2269a477e
Split views into own section
2017-04-24 09:53:40 +02:00
Jaco Greeff
262169c8a4
Add Vaults as dapp
2017-04-24 09:53:27 +02:00
Robert Habermeier
7ab92f0807
epoch generation proof fixes
2017-04-22 18:56:34 +02:00
Jaco Greeff
c044534d6a
Allow status updates on 2nd API instance
2017-04-21 16:03:50 +02:00
Jaco Greeff
fcdd19e105
Merge branch 'master' into ui-2
2017-04-21 15:42:23 +02:00
Jaco Greeff
5fc6a5627e
First iteration of Status page (WIP)
2017-04-21 15:20:43 +02:00
Jaco Greeff
2459501f4e
Home as dapp
2017-04-21 13:14:07 +02:00
Robert Habermeier
0768ce3600
Merge pull request #5307 from paritytech/eip-212
...
EIP-212 (bn128 curve pairing)
2017-04-21 13:10:57 +02:00
Jaco Greeff
23469a99e8
Fix API references to @parity/api
2017-04-21 11:40:22 +02:00
Jaco Greeff
b3dfc0b6db
Merge branch 'jg-split-abi-api' into ui-2
2017-04-21 11:21:54 +02:00
Jaco Greeff
2ffb6496f4
Merge branch 'master' into ui-2
2017-04-21 11:19:40 +02:00
NikVolf
7a1db0852b
fix typo
2017-04-21 12:10:41 +03:00
GitLab Build Bot
70c82c0f61
[ci skip] js-precompiled 20170420-192450
2017-04-20 19:28:34 +00:00
Robert Habermeier
f18f81ec58
Merge pull request #5479 from paritytech/fix-tree-route-panic
...
fix panickers in tree-route
2017-04-20 18:31:16 +02:00
Dmitriy Startsev
6c33b781c3
Update links to etherscan.io ( #5455 )
2017-04-20 18:03:43 +02:00
Robert Habermeier
023c45f302
checkout correct tests submodule
2017-04-20 17:34:04 +02:00
Jaco Greeff
ba03ed4eea
Refresh UI on nodeKind changes, e.g. personal -> public ( #5312 )
...
* Poll details based on nodeKind
* Delay long polling when public/light
* Reload UI when nodeKind changed
* Fix tests (not using dispatch, reload instead)
* PR grumbles/cleanups
2017-04-20 17:31:15 +02:00
Robert Habermeier
ee25249729
Merge pull request #5473 from paritytech/eip86
...
Correct contract address for EIP-86
2017-04-20 17:21:16 +02:00
Robert Habermeier
167d06d727
fix panickers in tree-route
2017-04-20 16:21:53 +02:00
Robert Habermeier
468a7a4a77
bloom check test
2017-04-20 16:09:43 +02:00
Jaco Greeff
4b403266ea
Merge branch 'master' into jg-split-abi-api
2017-04-20 15:47:24 +02:00
Jaco Greeff
89e5601ec0
blockies dep -> api
2017-04-20 15:47:20 +02:00
Jaco Greeff
9652c0fabb
UI packages to ui
2017-04-20 15:45:31 +02:00
Robert Habermeier
a33b4cc73b
fix tests
2017-04-20 15:04:07 +02:00
Jaco Greeff
11bcfa05e3
Update remaining ../abi to @parity/abi
2017-04-20 12:03:07 +02:00
Jaco Greeff
75d9fa3fe9
mocha babel ignores (@parity modules)
2017-04-20 11:56:13 +02:00
Jaco Greeff
887b7b5090
Update maintainers
2017-04-20 11:48:42 +02:00
Jaco Greeff
bb628bca88
Add missing npm aliasses
2017-04-20 11:42:32 +02:00
Jaco Greeff
8a46a4b567
Move API dependencies
2017-04-20 11:24:49 +02:00
Jaco Greeff
8b144bedd1
Shared build rules
2017-04-20 11:17:58 +02:00
Jaco Greeff
94c8cceb42
Add @parity/jsonrpc
2017-04-20 10:41:06 +02:00
Jaco Greeff
0d9e849162
Build with @parity/(abi|api) packages
2017-04-20 10:34:23 +02:00
Jaco Greeff
4568300d9b
Use @parity/abi
2017-04-20 10:34:00 +02:00
Jaco Greeff
b3056cd0ab
Add ABI/API package.json
2017-04-20 10:33:37 +02:00
Afri
a16fb04280
Force two decimals for USD conversion rate ( #5471 )
2017-04-19 22:59:02 +02:00
Robert Habermeier
240c111ebb
fix indent
2017-04-19 20:44:11 +02:00
Robert Habermeier
6652df03df
Merge branch 'master' into aura-contract-warp
2017-04-19 20:43:24 +02:00
Robert Habermeier
2ec3397b7d
snapshot chunk and restore traits
2017-04-19 20:31:53 +02:00
arkpar
97052f3912
null_sign with network id
2017-04-19 19:10:12 +02:00
GitLab Build Bot
0d40df937b
[ci skip] js-precompiled 20170419-162101
2017-04-19 16:24:42 +00:00
GitLab Build Bot
7d07c550ba
[ci skip] js-precompiled 20170419-161237
2017-04-19 16:16:20 +00:00
Nicolas Gotchac
37690cfde2
Refactoring of Tokens & Balances ( #5372 )
...
* Remove ETH filter
* Remove unused Blockchain reducer+actions
* Simpler Token updates and fetching
* Cleanup use of balances
* Cleanup of balances
* Cleanup of Balances
* Linting
* Update List Component
* Separate tokens from balances
* Refactoring balance fetchin and storing - Part I
* Linting
* Better ETH token description and use
* Working Transfer with new logic
* Add debugging
* Querying the tokens filter on new block
* Fixing the tests - PART I
* Fix txCount
2017-04-19 18:00:05 +02:00
Jaco Greeff
fc18299869
Background-repeat round ( #5475 )
2017-04-19 17:47:30 +02:00
GitLab Build Bot
770c7e5878
[ci skip] js-precompiled 20170419-142847
2017-04-19 14:32:38 +00:00
Robert Habermeier
4d3f137e1e
iterate over all epochs
2017-04-19 16:28:16 +02:00
Bas
23e7b53c13
nl i18n updated ( #5461 )
...
* Sync nl i18n to default
* Syntax fix in nl i18n
Tested locally
* nl translation improvements
2017-04-19 16:08:47 +02:00
Nicolas Gotchac
e1e2674cd2
Show ETH value (even 0) if ETH transfert in transaction list ( #5406 )
2017-04-19 16:02:24 +02:00
GitLab Build Bot
8310877f25
[ci skip] js-precompiled 20170419-133906
2017-04-19 13:42:54 +00:00
Robert Habermeier
af868a7439
ensure genesis validator set in DB
2017-04-19 15:35:12 +02:00
Nicolas Gotchac
e83de5cde2
Store the pending requests per network version ( #5405 )
...
* Store the requests in LS per network version
* Fixing tests
* Add network switching test
* Fixes
2017-04-19 15:15:43 +02:00
Robert Habermeier
a278dd5a0a
store epoch transition proofs in DB
2017-04-19 14:58:19 +02:00
arkpar
04e581db61
Correct contract address for EIP-86
2017-04-19 14:50:56 +02:00
Arkadiy Paronyan
b50fb71dd1
EIP-86 ( #4697 )
...
* EIP-86
* Disable EIP-86 auto activation for now
2017-04-19 14:30:00 +02:00
Robert Habermeier
6da6c755a5
iterate DB by prefix
2017-04-18 15:45:15 +02:00
Gav Wood
0180b21dd1
Update README.md
2017-04-18 14:55:25 +02:00
Robert Habermeier
f6f9816ef4
epoch verifier rename
2017-04-18 14:19:10 +02:00
Marek Kotewicz
cc3adcc2c1
Merge pull request #5451 from paritytech/temp-state-fix
...
Use in-memory database for tests
2017-04-14 08:24:26 +02:00
Robert Habermeier
e1fa4ab8ec
verify_external in verifier trait
2017-04-13 20:34:16 +02:00
Robert Habermeier
715d5daafe
ChainVerifier for memoizing validator sets
2017-04-13 20:24:21 +02:00
Robert Habermeier
fd4d7c4b68
correct state test checkout
2017-04-13 17:21:12 +02:00
Robert Habermeier
a98052fe74
Merge branch 'master' into on-demand-priority
2017-04-13 16:44:47 +02:00
Tomasz Drwięga
ea09aa584d
WebSockets RPC server ( #5425 )
...
* Basic WS server.
* CLI for WS server.
* Bump jsonrpc
* Fixing test.
2017-04-13 16:32:07 +02:00
Svyatoslav Nikolsky
1df30ee83e
added missing docs ( #5452 )
2017-04-13 14:26:07 +02:00
arkpar
314af4cdae
Use in-memory database in tests
2017-04-13 12:17:53 +02:00
GitLab Build Bot
1e6674f804
[ci skip] js-precompiled 20170413-083353
2017-04-13 08:37:35 +00:00
Maciej Hirsz
df5f722885
Merge pull request #5417 from paritytech/mh-publicnode-tests
...
Tests and tweaks for public node middleware
2017-04-13 10:13:07 +02:00
Robert Habermeier
b4f3e30cd6
detect changes in safe_contract
2017-04-12 22:10:18 +02:00
Robert Habermeier
34a1512ff0
skeleton for proof checking
2017-04-12 18:55:38 +02:00
Robert Habermeier
ec922ee5e4
supply optional call context to validator sets
2017-04-12 16:42:19 +02:00
Robert Habermeier
0f80c57dca
use native contracts in ValidatorSet
2017-04-12 16:15:35 +02:00
Robert Habermeier
2f5a774325
add validator contracts to native_contracts bin
2017-04-12 15:54:23 +02:00
Tomasz Drwięga
c58fd744ee
Fix removal of hash-mismatched files. ( #5440 )
2017-04-12 15:04:53 +02:00
Robert Habermeier
2d8a8bd3e5
engine changes
2017-04-12 14:41:19 +02:00
Robert Habermeier
13633414a3
Merge pull request #5383 from paritytech/block_header_rpc
...
parity_getBlockHeaderByNumber and LightFetch utility
2017-04-12 14:39:50 +02:00
GitLab Build Bot
d99f1e5f1f
[ci skip] js-precompiled 20170412-114838
2017-04-12 11:52:33 +00:00
Arkadiy Paronyan
15ae24b541
New state tests ( #5418 )
...
* General state tests
* Allow dir name for a test
2017-04-12 13:33:49 +02:00
Gav Wood
1b36a381e8
Fix buffer length for QR code gen. ( #5447 )
2017-04-12 13:20:22 +02:00
Robert Habermeier
e094043b80
Merge branch 'master' into block_header_rpc
2017-04-12 13:00:32 +02:00
GitLab Build Bot
a0d83537e5
[ci skip] js-precompiled 20170412-104510
2017-04-12 10:48:49 +00:00
Robert Habermeier
7723d6281b
starting memoized validatorset
2017-04-12 12:46:25 +02:00
keorn
52eae66c72
Add raw hash signing ( #5423 )
...
* add sign any
* Add RPC signMessage call to JS API
* Add signMessage to JSON RPC docs
* PostSignTransaction -> EthSignMessage
* fix doc typo
* revert incorect naming
2017-04-12 12:15:13 +02:00
Robert Habermeier
daf1495c4e
Filters and block RPCs for the light client ( #5320 )
...
* block_hash method for LightChainClient
* abstraction and futures-based eth_filter
* log fetching for light client
* add eth-filter delegate
* eth_block fetching RPCs
* return default accounts from on_demand
* fix early exit
* BlockNumber -> BlockId
* early exit for no known block number.
2017-04-12 12:07:54 +02:00
GitLab Build Bot
e84d03f31d
[ci skip] js-precompiled 20170411-150514
2017-04-11 15:08:42 +00:00
Robert Habermeier
a254b2098f
more useful Engine::verify_seal
2017-04-11 17:07:04 +02:00
Jaco Greeff
bb8adcce92
Work around mismatch for QR checksum ( #5374 )
...
* Work around current native-signer encoding
* Avoid trying to use non-existant util function.
2017-04-11 16:43:15 +02:00
Marek Kotewicz
4f8e61dce9
easy to use conversion from and to string for ethstore::Crypto ( #5437 )
...
* easy to use conversion from and to string for ethstore::Crypto
* ethstore uses tempdir instead of devtools
* ethstore does not depend on ethcore-util
2017-04-11 10:24:56 +02:00
keorn
d3b2bcdd79
Tendermint fixes ( #5415 )
...
* more resilience
* refactor commit
* fix proposal broadcast
* list encoding
* address grumbles
* to into
2017-04-10 20:03:18 +02:00
Robert Habermeier
bbe0eb96f4
Merge branch 'master' into on-demand-priority
2017-04-10 19:53:53 +02:00
Robert Habermeier
95808f51f1
Merge pull request #5403 from adrianbrink/adrian-lightclientcache
...
Add caching to HeaderChain struct
2017-04-10 19:46:02 +02:00
Robert Habermeier
cc6cf8d7ce
address grumble
2017-04-10 18:06:36 +02:00
Robert Habermeier
5b65f10828
Merge branch 'master' into block_header_rpc
2017-04-10 18:06:28 +02:00
GitLab Build Bot
a2bec1edb4
[ci skip] js-precompiled 20170410-094150
2017-04-10 09:45:12 +00:00
maciejhirsz
b11a84a347
Unlock transaction on RPC errors
2017-04-10 11:22:32 +02:00
Nicolas Gotchac
0aaf236ad1
Add decryption to the UI (in the Signer) ( #5422 )
...
* Add decryption to the UI in signer + Fix Signing style
* Proper out format function for singing methods
* name
2017-04-10 11:21:06 +02:00
keorn
20d4e7139f
Add CIDv0 RPC ( #5414 )
...
* add cid rpc
* add light
* clean up
2017-04-08 13:35:23 +02:00
GitLab Build Bot
bca0c6c172
[ci skip] js-precompiled 20170408-095429
2017-04-08 09:57:43 +00:00
Tomasz Drwięga
4e498790d4
Updating documentation for RPCs ( #5392 )
...
* Removing minBlocks occurrencies
* Docs for new RPCs.
* Fixing linting issues, updating *withToken documentatiojn.
* Adding missing RPCs. Fixing tests.
* Fixing lint issues.
2017-04-08 11:28:04 +02:00
Svyatoslav Nikolsky
93a6047912
Fixing secretstore TODOs - part 1 ( #5386 )
...
* ECDKG protocol prototype
* added test for enc/dec math
* get rid of decryption_session
* added licenses
* fix after merge
* get rid of unused serde dependency
* doc
* decryption session [without commutative enc]
* failed_dec_session
* fixed tests
* added commen
* added more decryption session tests
* helper to localize an issue
* more computations to localize error
* decryption_session::SessionParams
* added tests for EC math to localize problem
* secretstore network transport
* encryption_session_works_over_network
* network errors processing
* connecting to KeyServer
* licenses
* get rid of debug println-s
* fixed secretstore args
* encryption results are stored in KS database
* decryption protocol works over network
* enc/dec Session traits
* fixing warnings
* fix after merge
* on-chain ACL checker proto
* fixed compilation
* fixed compilation
* finally fixed <odd>-of-N-scheme
* temporary commented test
* 1-of-N works in math
* scheme 1-of-N works
* updated AclStorage with real contract ABI
* remove unnecessary unsafety
* fixed grumbles
* wakeup on access denied
* encrypt secretstore messages
* 'shadow' decryption
* fix grumbles
* lost files
* secretstore cli-options
* decryption seccion when ACL check failed on master
* disallow regenerating key for existing document
* removed obsolete TODO
* fix after merge
* switched to tokio_io
* fix after merge
* fix after merge
* fix after merge
* fix after merge
* fix after merge
* fixed test
* fix after merge
2017-04-08 11:26:16 +02:00
Adrian Brink
144d6c2379
Update light_sync test to include cache dependency
2017-04-07 21:35:42 +02:00
Adrian Brink
645b8e4b0b
Fix failing tests
2017-04-07 21:35:42 +02:00
Adrian Brink
d6bc60f968
Ensure that OnDemand and HeaderChain share the same cache
2017-04-07 21:35:41 +02:00
Adrian Brink
2ce5a656e7
Ensure that OnDemand and HeaderChain share the same cache
2017-04-07 21:35:41 +02:00
Adrian Brink
fa88ee148a
Add header to cache
2017-04-07 21:35:41 +02:00
Adrian Brink
5e33fe0aa7
Add cache to HeaderChain struct.
2017-04-07 21:35:41 +02:00
Adrian Brink
9552ca7bb3
Change to snakecase
2017-04-07 21:35:41 +02:00
Adrian Brink
3632a98062
Clean up
2017-04-07 21:35:41 +02:00
Adrian Brink
23c76caafa
Add header to cache
2017-04-07 21:35:41 +02:00
Adrian Brink
8a7ca6f0ba
Add caching to block_header()
2017-04-07 21:34:29 +02:00
Adrian Brink
8ea25eeb3c
Add cache to HeaderChain struct.
2017-04-07 21:34:29 +02:00
Adrian Brink
e004e05037
Spelling fixes and link addition about LRU cache in the docs.
2017-04-07 21:34:29 +02:00
Robert Habermeier
d0e057cabd
Merge pull request #5399 from paritytech/dapps-content-bug
...
Fixing disappearing content.
2017-04-07 19:45:48 +02:00
Robert Habermeier
68ec7ae41e
tests for on_demand
2017-04-07 19:35:39 +02:00
Gav Wood
81f48c0001
Merge branch 'master' into dapps-content-bug
2017-04-07 18:26:55 +02:00
Robert Habermeier
50886fcb31
Merge pull request #5318 from paritytech/snapshot-v2
...
Snapshot chunks packed by size
2017-04-07 14:45:42 +02:00
Robert Habermeier
5793bb8fac
typestrong API
2017-04-06 20:01:09 +02:00
Tomasz Drwięga
f223ed21a5
APIs wildcards and simple arithmetic. ( #5402 )
2017-04-06 19:38:33 +02:00
Tomasz Drwięga
d74e044be4
Fixing compilation without dapps. ( #5410 )
2017-04-06 19:32:30 +02:00
Robert Habermeier
cf75a19e8d
Merge branch 'block_header_rpc' into on-demand-priority
2017-04-06 17:59:55 +02:00
Robert Habermeier
528dbf909a
fix RPC fallout
2017-04-06 17:44:31 +02:00
maciejhirsz
a45791d2c0
Handle invalid passwords
2017-04-06 17:36:21 +02:00
Robert Habermeier
d19232a848
use cache in on-demand again
2017-04-06 17:22:05 +02:00
maciejhirsz
564a1b0fbb
Tests and tweaks for public node middleware
2017-04-06 17:13:53 +02:00
Robert Habermeier
574cfae470
dispatch batched requests
2017-04-06 15:34:48 +02:00
NikVolf
9bcd1245d9
fix typo
2017-04-06 11:04:28 +03:00
Denis S. Soldatov aka General-Beck
89a4cb08e8
Update .gitlab-ci.yml
2017-04-05 21:40:12 +03:00
Denis S. Soldatov aka General-Beck
91dbf3c09d
init switch to parity docker hub
...
https://hub.docker.com/r/parity/rust/
2017-04-05 21:35:53 +03:00
Robert Habermeier
3eea77709b
convert Request to CheckedRequest
2017-04-05 19:19:04 +02:00
Robert Habermeier
08d8709ef6
checked request for OnDemand
2017-04-05 18:56:01 +02:00
GitLab Build Bot
5ebd38f1d6
[ci skip] js-precompiled 20170405-145308
2017-04-05 14:58:00 +00:00
arkpar
03ec27be66
Removed assert
2017-04-05 16:50:06 +02:00
Nicolas Gotchac
455f994673
Don't use port 8080 anymore ( #5397 )
2017-04-05 16:27:44 +02:00
Robert Habermeier
4f843ada3c
Merge github.com:paritytech/parity into block_header_rpc
2017-04-05 16:27:32 +02:00
Robert Habermeier
35740456a4
generalize RequestBuilder
2017-04-05 15:02:44 +02:00
Robert Habermeier
8486e79cad
Merge pull request #5002 from paritytech/lightcli
...
Quick'n'dirty CLI for the light client
2017-04-05 13:50:17 +02:00
Robert Habermeier
6b7a286158
Merge pull request #5401 from paritytech/state-proof-gas-limit
...
set gas limit before proving transactions
2017-04-05 13:50:04 +02:00
arkpar
81db3461fe
Added an assert
2017-04-05 12:27:37 +02:00
Robert Habermeier
e2dfea8c12
set gas limit before proving transactions
2017-04-05 12:05:55 +02:00
Tomasz Drwięga
6165eda356
Fixing disappearing content.
2017-04-05 11:37:45 +02:00
Robert Habermeier
0d8a2c8c44
CHT key optimization
2017-04-05 11:30:51 +02:00
GitLab Build Bot
8d0fde6f60
[ci skip] js-precompiled 20170405-090226
2017-04-05 09:06:09 +00:00
Maciej Hirsz
237bac4500
Merge pull request #5390 from paritytech/mh-publicnode-perf
...
Public node: perf and fixes
2017-04-05 10:42:59 +02:00
Arkadiy Paronyan
5f9dc13207
Straight download path in the readme ( #5393 )
2017-04-04 15:46:42 +03:00
Denis S. Soldatov aka General-Beck
9b212dc518
Update cov.sh
...
remove src/test from EXCLUDE
2017-04-04 12:51:54 +03:00
maciejhirsz
94bfe116aa
CR fixes
2017-04-04 11:49:36 +02:00
maciejhirsz
50e0221dd1
Perf and fixes
2017-04-03 18:50:11 +02:00
Svyatoslav Nikolsky
abec06f50c
On-chain ACL checker for secretstore ( #5015 )
...
* ECDKG protocol prototype
* added test for enc/dec math
* get rid of decryption_session
* added licenses
* fix after merge
* get rid of unused serde dependency
* doc
* decryption session [without commutative enc]
* failed_dec_session
* fixed tests
* added commen
* added more decryption session tests
* helper to localize an issue
* more computations to localize error
* decryption_session::SessionParams
* added tests for EC math to localize problem
* secretstore network transport
* encryption_session_works_over_network
* network errors processing
* connecting to KeyServer
* licenses
* get rid of debug println-s
* fixed secretstore args
* encryption results are stored in KS database
* decryption protocol works over network
* enc/dec Session traits
* fixing warnings
* fix after merge
* on-chain ACL checker proto
* fixed compilation
* fixed compilation
* finally fixed <odd>-of-N-scheme
* temporary commented test
* 1-of-N works in math
* scheme 1-of-N works
* updated AclStorage with real contract ABI
* remove unnecessary unsafety
* fixed grumbles
* wakeup on access denied
* fix after merge
* fix after merge
* moved contract to native-contracts lib
2017-04-03 17:46:51 +02:00
GitLab Build Bot
ee4f9da385
[ci skip] js-precompiled 20170403-112007
2017-04-03 11:24:51 +00:00
Jaco Greeff
848779e465
Allow empty-encoded values from encoding ( #5385 )
2017-04-03 12:56:07 +02:00
Robert Habermeier
60ce0aee1a
Merge branch 'lightcli' into light-filters
2017-04-03 12:55:31 +02:00
Robert Habermeier
0f65779d29
fix indentation in usage.txt
2017-04-03 12:54:27 +02:00
Robert Habermeier
394040e22c
Merge branch 'master' into lightcli
2017-04-03 12:44:52 +02:00
GitLab Build Bot
0a90f235de
[ci skip] js-precompiled 20170403-103604
2017-04-03 10:39:53 +00:00
Jaco Greeff
2447875b26
Update npm build for new inclusions ( #5381 )
...
* Update npm build for new inclusions
* Add dummy interface for secp256k1
2017-04-03 12:16:41 +02:00
NikVolf
df72c9c6cc
fold multiplication
2017-04-03 12:57:18 +03:00
Robert Habermeier
6aa9005785
parity_getBlockHeaderByNumber and LightFetch
2017-04-03 11:37:07 +02:00
Denis S. Soldatov aka General-Beck
c3769b8874
Merge pull request #5356 from loadaverage/dockerfile_fix
...
Fix for Ubuntu Dockerfile
2017-04-03 16:15:49 +07:00
Svyatoslav Nikolsky
c0c06fdc53
Secretstore over network ( #4974 )
...
* ECDKG protocol prototype
* added test for enc/dec math
* get rid of decryption_session
* added licenses
* fix after merge
* get rid of unused serde dependency
* doc
* decryption session [without commutative enc]
* failed_dec_session
* fixed tests
* added commen
* added more decryption session tests
* helper to localize an issue
* more computations to localize error
* decryption_session::SessionParams
* added tests for EC math to localize problem
* secretstore network transport
* encryption_session_works_over_network
* network errors processing
* connecting to KeyServer
* licenses
* get rid of debug println-s
* fixed secretstore args
* encryption results are stored in KS database
* decryption protocol works over network
* enc/dec Session traits
* fixing warnings
* fix after merge
* finally fixed <odd>-of-N-scheme
* temporary commented test
* 1-of-N works in math
* scheme 1-of-N works
* remove unnecessary unsafety
* fixed grumbles
* fix grumbles
* lost files
2017-04-03 11:13:51 +02:00
Tomasz Drwięga
2df4532d50
Dapps and RPC server merge ( #5365 )
...
* Dapps server as a middleware.
* Dapps RPC - Work in Progress
* Merging Dapps and RPC server.
* Fast HTTP server configuration.
* Bump jsonrpc
* Fixing test target
* Re-implementing commented-out tests.
2017-04-03 10:27:37 +02:00
Jaco Greeff
6a05967bef
trigger js build release ( #5379 )
2017-04-03 10:25:21 +02:00
Christopher Franko
41700a6996
Update expanse json with fork at block 600000 ( #5351 )
...
* Update expanse json with fork at block 600000
* update exp chainID to 2
2017-04-03 09:59:08 +02:00
Robert Habermeier
c9c8f920d2
Futures-based native wrappers for contract ABIs ( #5341 )
...
* initial native contract generator
* get generated code compiling
* unit tests for type codegen
* autogenerate registry contract
* native_contracts entry for registry
* service_transaction_checker
* fixed indentation
2017-04-03 09:40:18 +02:00
Robert Habermeier
8c715e025a
Merge branch 'lightcli' into light-filters
2017-04-03 09:03:12 +02:00
Robert Habermeier
3eece20967
Merge branch 'master' into lightcli
2017-04-03 08:58:20 +02:00
Robert Habermeier
21e21f1e02
Merge pull request #5337 from paritytech/kovan-receipt-fix
...
Kovan warp sync fixed
2017-04-02 18:26:49 +02:00
keorn
84abf5d84f
Aura eip155 validation transition ( #5362 )
...
* add eip155 validation
* add transition block
2017-04-01 13:21:22 +02:00
Tomasz Drwięga
83fea78d38
Wordlist from crate ( #5331 )
2017-04-01 13:26:44 +07:00
Jaco Greeff
1987dad527
Allow signing via Qr ( #4881 )
...
* QR code scanning in-place
* QrScan component
* Update tests
* s/store/createStore/ in props
* Create of actual accountsInfo entry
* Exteral/hardware forget, no password change
* Add external accounts to accounts list
* Render external accounts in section (along with hw)
* Manul test bugfixes
* Display Qr code for tx signing
* Align QR code
* Hints for QR operations
* Generate actual qr codes based on tx data
* Add leading 0x if not found
* Update tests for 0x leading addition
* from & rpl without leading 0x
* Auto-detect QR code size (input length)
* Confirm raw
* WIP (lots of logging)
* WIP
* Chain-replay protection
* Readability
* Re-add r: chainId
* s = 0, r = 0, v = chainId
* Update eth_signTransaction to send transaction object
* And it actually works.
* Externalise createUnsigned/createSigned
* Check for nonce updates (future: subscriptions)
* Allow gas overrides
* Expose formatted condition
* Extract calculation (cap at 40)
* Remove debug log
* Fix rename linting
* Allow for signing hash & rlp (App support forthcoming)
* WIP
* User original qrcode-generator package
* Complete hash + rlp signing
* Accurate QR code size calculation
* Simplify type calculation
* R-eactivate current mobile interface (TODO for new)
* Move napa to dep
* Allow external accounts visibility in dapps
* Allow napa install on CI
* Allow new signTransaction & signTransactionHash functionality
2017-03-31 23:36:24 +02:00
Jaco Greeff
cbaa7fdee6
Allow entry of url or hash for DappReg meta ( #5360 )
...
* Allow DappReg to handle contentHash & url inputs
* Add tests
2017-03-31 23:33:55 +02:00
Jaco Greeff
73dc52980e
Adjust tx overlay colours ( #5353 )
...
* Adjust tx overlay colours
* Adjust sizes to be consistent
* Formatting
2017-03-31 23:32:03 +02:00
Jaco Greeff
8b0f9759ec
Add ability to disallow API subscriptions ( #5366 )
2017-03-31 22:30:39 +02:00
NikVolf
d6baadbaf2
fix doc comment about failing
2017-03-31 17:53:26 +03:00
NikVolf
569d63d0c9
fix assertions
2017-03-31 17:46:44 +03:00
NikVolf
a529427bc9
bump bn lib
2017-03-31 17:38:31 +03:00
NikVolf
2f30b03060
some tests
2017-03-31 17:38:31 +03:00
NikVolf
d34aec29ed
finalize
2017-03-31 17:38:30 +03:00
NikVolf
9271dd0cc7
wip
2017-03-31 17:38:30 +03:00
NikVolf
3d2e9efb1e
P1, P2 definition
2017-03-31 17:38:30 +03:00
arkpar
b840ab8f8b
Compact chunks
2017-03-31 16:31:12 +02:00
arkpar
deef600caf
Download unique receipts only
2017-03-31 15:20:27 +02:00
Robert Habermeier
d146ae7275
Merge pull request #4999 from paritytech/eip-213
...
EIP-213 (bn128 curve operations)
2017-03-31 14:54:07 +02:00
Jaco Greeff
801a2339ee
Fix analize output file name ( #5357 )
2017-03-31 10:38:57 +02:00
Vadim Sloun
2f757babb9
fix for Ubuntu Dockerfile
2017-03-30 23:18:06 +03:00
keorn
2398311455
add eip155 validation ( #5346 )
2017-03-30 20:01:19 +02:00
Jan Ziniewicz
5d6dac495e
Add new seed nodes ( #5345 )
2017-03-30 14:49:11 +02:00
arkpar
3915943f57
Kovan warp sync fixed
2017-03-30 13:13:43 +02:00
Maciej Hirsz
e0d5eedff7
Merge pull request #5336 from paritytech/mh-wordlist-fe
...
Shared wordlist for frontend
2017-03-30 12:28:52 +02:00
Maciej Hirsz
4e1ef482ad
Merge pull request #5338 from paritytech/mh-fixtests
...
fix rpc tests
2017-03-30 09:23:05 +02:00
maciejhirsz
6b0b8078e9
fix rpc tests
2017-03-29 20:44:08 +02:00
maciejhirsz
377f20ed49
Fix ci:build
2017-03-29 20:20:03 +02:00
maciejhirsz
2cc111ad5d
use @parity/wordlist
2017-03-29 19:48:29 +02:00
Maciej Hirsz
ab2c3468d5
Merge pull request #5304 from paritytech/mh-webserver
...
Public node with accounts and signing in Frontend
2017-03-29 17:48:47 +02:00
maciejhirsz
54196a8d4f
Skip timing out tests
2017-03-29 17:38:20 +02:00
maciejhirsz
9bd3f10f41
Squashed: Public Node
2017-03-29 17:07:58 +02:00
GitLab Build Bot
93ee2a9b64
[ci skip] js-precompiled 20170329-145217
2017-03-29 14:55:09 +00:00
Jaco Greeff
a4c433c749
Rename Status/Status -> Status/NodeStatus ( #5332 )
2017-03-29 16:31:33 +02:00
GitLab Build Bot
858c974440
[ci skip] js-precompiled 20170329-134148
2017-03-29 13:44:40 +00:00
Tomasz Drwięga
d2394d3ac3
Updating paths to repos. ( #5330 )
...
* Updating paths to repos.
* Updating rotor and libusb
* Fixing other occurrences
2017-03-29 15:17:27 +02:00
Tomasz Drwięga
d4684d6302
Separate status for canceled local transactions. ( #5319 )
2017-03-29 14:43:55 +02:00
Nicolas Gotchac
5fa088114c
Cleanup the Status View ( #5317 )
...
* Better view of Settings and Mining Settings
* Cleanup Status view
* Node Logs refactoring
* Cleanup Status
* Move RPC Calls files
* Basic Peers view
* Add Peers table
* style table header
2017-03-29 14:38:07 +02:00
Nicolas Gotchac
8930f510fc
Update requests ( #5324 )
2017-03-29 14:34:21 +02:00
GitLab Build Bot
7134b44f5b
[ci skip] js-precompiled 20170328-172957
2017-03-28 17:32:58 +00:00
Jaco Greeff
86bc784e41
Order signer FIFO ( #5321 )
2017-03-28 19:06:26 +02:00
Marek Kotewicz
64c098627e
updating dependencies ( #5028 )
...
* updated docopt, env_logger, semver and regex crates
* updated parking_lot to 0.4
* fixed compiling on linux
* updated igd to 0.6
* updated jsonrpc
* fixed regex related compiler error on linux
2017-03-28 19:06:08 +02:00
Robert Habermeier
1b0a369889
return default accounts from on_demand
2017-03-28 18:55:23 +02:00
Robert Habermeier
73fa0cdc31
eth_block fetching RPCs
2017-03-28 17:15:36 +02:00
Robert Habermeier
d8893b959d
add eth-filter delegate
2017-03-28 15:56:51 +02:00
Robert Habermeier
f409168126
log fetching for light client
2017-03-28 15:42:23 +02:00
GitLab Build Bot
843d95966e
[ci skip] js-precompiled 20170328-125352
2017-03-28 12:56:58 +00:00
Nicolas Gotchac
a99721004b
Minimise transactions progress ( #4942 )
...
* Watch the requests and display them throughout the app
* Linting
* Showing Requests
* Fully working Transaction Requests Display
* Add FormattedMessage to Requests
* Clean-up the Transfer dialog
* Update Validations
* Cleanup Create Wallet
* Clean Deploy Contract Dialog
* Cleanup Contract Execution
* Fix Requests
* Cleanup Wallet Settings
* Don't show stepper in Portal if less than 2 steps
* WIP local storage requests
* Caching requests and saving contract deployments
* Add Historic prop to Requests MethodDecoding
* Fix tests
* Add Contract address to MethodDecoding
* PR Grumbles - Part I
* PR Grumbles - Part II
* Use API Subscription methods
* Linting
* Move SavedRequests and add tests
* Added tests for Requests Actions
* Fixing tests
* PR Grumbles + Playground fix
* Revert Playground changes
* PR Grumbles
* Better showEth in MethodDecoding
2017-03-28 14:34:31 +02:00
Robert Habermeier
a6b6c312b8
abstraction and futures-based eth_filter
2017-03-28 14:19:21 +02:00
GitLab Build Bot
e28c477075
[ci skip] js-precompiled 20170328-094309
2017-03-28 09:46:03 +00:00
Jaco Greeff
8e91f7b701
Fix eth_sign showing as wallet account ( #5309 )
...
* defaultProps for account
* Pass signing account
* Update tests for Connect(...)
2017-03-28 11:24:07 +02:00
Robert Habermeier
da3dd65726
block_hash method for LightChainClient
2017-03-28 11:23:43 +02:00
Arkadiy Paronyan
c7d99c37fb
Ropsten revival ( #5302 )
2017-03-28 10:47:21 +02:00
keorn
a61b1567d0
Strict validation transitions ( #4988 )
...
* ability to make validation stricter
* fix consensus
* remove logger
2017-03-28 10:46:52 +02:00
GitLab Build Bot
7039eaf995
[ci skip] js-precompiled 20170328-065931
2017-03-28 07:02:31 +00:00
Nicolas Gotchac
d99aa3192c
Fix default list sorting ( #5303 )
...
* Fix default sorting for lists views
* Linting
2017-03-28 08:35:10 +02:00
Nicolas Gotchac
8a664c524c
Use uniq owners for multi sig wallets ( #5298 )
2017-03-28 08:34:54 +02:00
GitLab Build Bot
d6110d7332
[ci skip] js-precompiled 20170327-200527
2017-03-27 20:08:17 +00:00
Jaco Greeff
1db72ad6e2
Copy all existing i18n strings into zh (as-is translation aid) ( #5305 )
...
* Copy available strings into zh
* Update after lint
* Force rebuild (upstream package update)
2017-03-27 21:46:39 +02:00
GitLab Build Bot
6d5bfcfe44
[ci skip] js-precompiled 20170327-161452
2017-03-27 16:17:42 +00:00
Nicolas Gotchac
fb88e5d652
Fix booleans in Typedinput ( #5295 )
...
* Register new playground component onMount
* No need of observer
* getValue returns falsy values
* Fix tests
2017-03-27 17:56:08 +02:00
GitLab Build Bot
f5bce0cd9e
[ci skip] js-precompiled 20170327-155051
2017-03-27 15:53:33 +00:00
Robert Habermeier
62158601fb
node kind RPC ( #5025 )
...
* node kind RPC
* JS interface for parity_nodeKind
2017-03-27 17:30:19 +02:00
Nicolas Gotchac
a12583f762
Fix the use of MobX in playground ( #5294 )
...
* Register new playground component onMount
* No need of observer
* Fix tests
2017-03-27 17:27:35 +02:00
NikVolf
efe0f8449c
Merge remote-tracking branch 'origin/master' into eip-213
2017-03-27 18:18:22 +03:00
NikVolf
c313857485
fix error handling
2017-03-27 18:17:49 +03:00
Robert Habermeier
1ca1a4b1cc
Merge pull request #5019 from paritytech/snapshot-v2
...
Fine grained snapshot chunking
2017-03-27 16:57:02 +02:00
GitLab Build Bot
90746bd8c9
[ci skip] js-precompiled 20170327-144027
2017-03-27 14:43:26 +00:00
Jaco Greeff
a4c5375a63
Add lint:i18n to find missing & extra keys ( #5290 )
...
* Add npm run lint:i18n (missing keys check)
* Check extraneous keys
2017-03-27 16:27:25 +02:00
Jaco Greeff
986762a0bc
Scaffolding for zh translations, including first-round by @btceth ( #5289 )
...
* Initial import of #5023
* Language naming
* Update 简体中文
2017-03-27 16:19:30 +02:00
GitLab Build Bot
7707f7557a
[ci skip] js-precompiled 20170327-102018
2017-03-27 10:23:02 +00:00
GitLab Build Bot
9e02271a68
[ci skip] js-precompiled 20170327-100522
2017-03-27 10:08:02 +00:00
Jaco Greeff
eb1f76d8bd
JS package bumps ( #5287 )
...
* Update to React 15.4.2
* Update deprecated UglifyJS version
2017-03-27 11:43:09 +02:00
Jaco Greeff
e8c64b802d
Auto-extract new i18n strings (update) ( #5288 )
...
* Update passwordHint chain
* Update auto-extracted strings
2017-03-27 11:42:59 +02:00
Marek Kotewicz
23d3b79d9a
eip100b ( #5027 )
...
* eip100b
* fix eip100b build and tests
* Conventional comparison order
2017-03-27 11:42:40 +02:00
arkpar
387a5fb03b
Doc
2017-03-26 13:26:20 +02:00
NikVolf
34fb39da5b
avoid allocating string
2017-03-25 23:30:11 +03:00
arkpar
b0a9c1e0fa
Limit by entry count
2017-03-25 15:25:20 +01:00
arkpar
b52c7bba4b
Fewer allocations
2017-03-25 13:22:25 +01:00
arkpar
56ba9a30ac
Fixed sync tests
2017-03-25 13:22:25 +01:00
arkpar
4ef89b5ccb
Fine grained snapshot chunking
2017-03-25 13:22:25 +01:00
Robert Habermeier
109012cae8
force earliest era set in snapshot restore ( #5021 )
2017-03-25 10:00:50 +01:00
Gav Wood
7e78480840
Avoid clogging up tmp when updater dir has bad permissions. ( #5024 )
2017-03-24 19:03:59 +01:00
Arkadiy Paronyan
3b54b49b0b
Resilient warp sync ( #5018 )
2017-03-24 18:55:57 +01:00
NikVolf
434ed1b91c
remove alt_
2017-03-24 15:35:00 +03:00
Robert Habermeier
ac057ebe93
fix test build
2017-03-23 22:36:15 +01:00
Robert Habermeier
a78068cbe9
queue culling and informant
2017-03-23 22:20:00 +01:00
Robert Habermeier
3708b3be63
fix RPC tests
2017-03-23 20:49:17 +01:00
Robert Habermeier
e0a79699ea
transaction propagation on a timer
2017-03-23 20:31:20 +01:00
Robert Habermeier
b76860fd2b
add signing RPC methods in light cli
2017-03-23 19:42:11 +01:00
Robert Habermeier
45c0a97142
fix body encoding
2017-03-23 18:52:54 +01:00
Robert Habermeier
5700f4ac81
fix block response decoding
2017-03-23 18:31:16 +01:00
GitLab Build Bot
9efab789aa
[ci skip] js-precompiled 20170323-150743
2017-03-23 15:10:28 +00:00
GitLab Build Bot
35a43a1e82
[ci skip] js-precompiled 20170323-150033
2017-03-23 15:03:35 +00:00
Robert Habermeier
974f89d5bf
correct workaround for RLP issue
2017-03-23 16:00:00 +01:00
Jaco Greeff
df76f010da
Create webpack analysis files (size) ( #5009 )
2017-03-23 15:47:42 +01:00
Robert Habermeier
10a470a5fa
better bookkeeping of requests in light sync
2017-03-23 15:44:16 +01:00
Nicolas Gotchac
1490ba179c
Dispatch an open event on drag of Parity Bar ( #4987 )
...
* Dispatch an open event on drag of Parity Bar
* Bette id for ParityBar position // Replace on dapp unload
* Fix PairtyBar Positionning
2017-03-23 15:39:13 +01:00
Robert Habermeier
c75b49667e
workaround for #5008
2017-03-23 14:49:02 +01:00
Robert Habermeier
1485dd07ae
use prev credits in tracing
2017-03-23 14:38:32 +01:00
Robert Habermeier
54eb575000
request tests that demonstrate broken RLP behavior
2017-03-23 14:38:23 +01:00
Robert Habermeier
ac7f1f6719
fix header chain tests
2017-03-23 14:15:13 +01:00
Robert Habermeier
da837fa9d8
Merge branch 'master' into lightcli
2017-03-23 14:12:42 +01:00
Robert Habermeier
a1df49ef3e
add test for request vec deserialization
2017-03-23 14:04:26 +01:00
Arkadiy Paronyan
f5ea47a7b2
Various installer and tray apps fixes ( #4970 )
...
* Mac tray app fixes
* Windows restarting fixed
2017-03-23 13:25:31 +01:00
Robert Habermeier
ec52a4a235
more tracing in on-demand
2017-03-23 13:24:04 +01:00
Tomasz Drwięga
bb1bbebfd6
Export account RPC ( #4967 )
...
* Export account RPC
* Removing GethDirectory and ParityDirectory
* Updating ethstore-cli help.
2017-03-23 13:23:03 +01:00
keorn
9fdd0e3a0a
Switching ValidatorSet ( #4961 )
...
* add multi validator set
* nicer comment
* validate in constructor
* reporting
2017-03-23 13:19:28 +01:00
Robert Habermeier
64cec5ff7d
Implement PIP messages, request builder, and handlers ( #4945 )
...
* return errors on database corruption
* fix tests, json tests
* fix remainder of build
* buffer flow -> request credits
* proving state backend
* generate transaction proofs from provider
* network messages for transaction proof
* transaction proof test
* test for transaction proof message
* fix call bug
* request transaction proofs from on_demand
* most of proved_execution rpc
* proved execution future
* initial request definitions
* RLP encoding and decoding for requests
* proofs of non-existance in ProvingBlockChainClient
* new requests in provider.
* encode and decode responses
* complete initial request changes
* handle request packet in LightProtocol
* handle response packets
* implement requesting from
* re-do cost table
* get tests compiling
* fix cost table RLP encoding
* roundtrip tests for request types
* request builder tests
* move request_builder -> request::builder
* get network tests working
* return only complete headers responses
* request builder improvements
* New version of jsonrpc.
* split request filling into fill,complete
* Better invalid encoding messages
* Fixing deprecated methods of tokio_core
* use PIP messages in on_demand, old API
* migrate oneshot::complete to send in on_demand
* get on_demand tests to compile
* port ethsync to PIP messages
* adjust to minor on_demand API changes in RPC
* Using dedicated branch for jsonrpc
* Bump
2017-03-23 13:17:05 +01:00
GitLab Build Bot
b931a225ba
[ci skip] js-precompiled 20170323-093322
2017-03-23 09:36:34 +00:00
Craig O'Connor
e5c2b25351
auto lint ( #5003 )
...
* auto lint
* Usage consistency update
2017-03-23 10:14:32 +01:00
Robert Habermeier
77f036ee21
fix capabilities-interpreting error in on_demand
2017-03-23 04:38:08 +01:00
Robert Habermeier
4eb69dc0fe
reintroduce credits recharging
2017-03-23 04:36:49 +01:00
Robert Habermeier
0d110ed47c
apply pending changes to chain after DB commit
2017-03-23 04:00:22 +01:00
Robert Habermeier
b96eb45877
eth_syncing RPC for light client
2017-03-23 03:23:53 +01:00
Robert Habermeier
a55001ad1d
fix deadlock in on_demand
2017-03-23 02:55:25 +01:00
Robert Habermeier
23a6b19985
fix import
2017-03-22 22:10:02 +01:00
Robert Habermeier
0abbd7ac97
Merge branch 'pip-msg' into lightcli
2017-03-22 22:08:39 +01:00
Robert Habermeier
83911a7290
complete quick'n'dirty light CLI
2017-03-22 22:00:52 +01:00
Robert Habermeier
73b2dd7a59
light client RPC dependencies
2017-03-22 21:09:43 +01:00
Robert Habermeier
35d9a9815e
mild abstraction of RPC dependencies
2017-03-22 20:14:40 +01:00
Robert Habermeier
e3d6525d83
store cumulative cost in pending request set.
2017-03-22 19:30:42 +01:00
Robert Habermeier
c718b5618e
initial light CLI
2017-03-22 18:32:04 +01:00
GitLab Build Bot
41f66f33d5
[ci skip] js-precompiled 20170322-161945
2017-03-22 16:22:41 +00:00
GitLab Build Bot
5255b72f67
[ci skip] js-precompiled 20170322-160703
2017-03-22 16:10:12 +00:00
Robert Habermeier
a9d75e2223
CLI options for light client
2017-03-22 16:45:50 +01:00
Jaco Greeff
6b4cb35149
Fix FireFox overflows ( #5000 )
...
* Max width for container
* Set min-width
2017-03-22 16:39:57 +01:00
Jaco Greeff
5df3f5d136
Show busy indicator, focus first field ( #4997 )
2017-03-22 16:39:49 +01:00
Jaco Greeff
1879dbca8a
Consistent store naming in the Signer components ( #4996 )
2017-03-22 16:39:40 +01:00
NikVolf
2de67538a2
updating deps
2017-03-22 18:07:41 +03:00
Robert Habermeier
dd1a3fc60a
migration to light client mode
2017-03-22 15:58:43 +01:00
Robert Habermeier
a0619fc101
Merge branch 'master' into pip-msg
2017-03-22 15:56:09 +01:00
NikVolf
9d23101c9a
update for rv
2017-03-22 17:43:19 +03:00
Marek Kotewicz
044d070667
rlp deserialization refactor, 30% faster ( #4901 )
...
* fixed naming of rlp modules
* RlpStream cleanup
* appending short rlp lists (0...55 bytes) is 25% faster
* RlpStream does not use bytes module, nor trait Stream
* removed unused code from rlp module
* compiling ethcore-util with new rlp serialization
* compiling parity with new rlp serialization
* fixed compiling ethcore-light with new rlp serialization
* fixed compiling ethsync with new rlp serialization
* moved rlp benches and rlp tests
* rlp deserialization refactor, 30% faster
* removed redundant comment, print
* fixed compiling parity with new rlp deserialization
* removed redundant double-space
* fixed failing test
* updated rlp docs, removed unused traits
* fixed rlp benchmarks
* replace usage of WriteBytesExt with ByteOrder
* removed unused, commented out code
* fixed merge conflict
2017-03-22 14:41:46 +01:00
NikVolf
436ae1333c
trace mapping fix
2017-03-22 16:40:44 +03:00
NikVolf
8a4537fc73
no-input test
2017-03-22 16:31:43 +03:00
NikVolf
d1293d9fb0
fix warnings
2017-03-22 15:54:19 +03:00
NikVolf
3e7dc57289
some tests for simple cases
2017-03-22 15:41:32 +03:00
Robert Habermeier
219eddf33e
Merge branch 'master' into pip-msg
2017-03-22 13:14:28 +01:00
GitLab Build Bot
b6f9cf4ba7
[ci skip] js-precompiled 20170322-112932
2017-03-22 11:32:23 +00:00
GitLab Build Bot
07ee7a341b
[ci skip] js-precompiled 20170322-111524
2017-03-22 11:18:36 +00:00
Nicolas Gotchac
67c225f971
Double click to select account creation type ( #4986 )
...
* Extend links to whole container
* Add doubleClick to Account Creator
2017-03-22 12:12:21 +01:00
Nicolas Gotchac
a028e445fe
Fixes to the Registry dapp ( #4984 )
...
* Don't show fee warning when there is none
* Hide Warning in Registry onclick
* Use the default account in the Registry
* Fix Etherscan links in Regsitry
2017-03-22 11:56:52 +01:00
GitLab Build Bot
b725829bfd
[ci skip] js-precompiled 20170322-095443
2017-03-22 09:57:28 +00:00
Jaco Greeff
e1f2ccd138
Extend api.util ( #4979 )
...
* cleanupValue
* abiUnencode & abiSignature
* Export new functions
2017-03-22 10:36:41 +01:00
Tomasz Drwięga
7e87e9e8ad
Updating JSON-RPC crates ( #4934 )
...
* New version of jsonrpc.
* Better invalid encoding messages
* Fixing deprecated methods of tokio_core
* Using dedicated branch for jsonrpc
* Bump
2017-03-22 07:02:14 +01:00
Marek Kotewicz
d530cc86f3
splitting part of util into smaller crates ( #4956 )
...
* split path module from util
* moved RotatingLogger from util to logger crate
* fix tests
* fix tests
* use only one version of ansi_term crate
2017-03-22 06:23:40 +01:00
NikVolf
5e34235a36
initial, fallable built-ins
2017-03-22 04:01:46 +03:00
GitLab Build Bot
63f1ca9243
[ci skip] js-precompiled 20170321-204617
2017-03-21 20:48:59 +00:00
Tomasz Drwięga
498d5c0660
Updating syntex et al ( #4983 )
...
* Migrating to new syntex
* Updating to latest syntex
* Another fix for nightly
2017-03-21 23:26:05 +03:00
Robert Habermeier
384aeda645
Merge branch 'pip-msg' into lightcli
2017-03-21 21:15:24 +01:00
Robert Habermeier
7ad36ee36c
Merge remote-tracking branch 'upstream/new-jsonrpc' into pip-msg
2017-03-21 21:15:06 +01:00
Robert Habermeier
e99884d0c0
Merge branch 'master' into pip-msg
2017-03-21 21:05:01 +01:00
Robert Habermeier
9fcaea2235
Merge branch 'pip-msg' of github.com:paritytech/parity into pip-msg
2017-03-21 21:02:22 +01:00
Robert Habermeier
dd1f8295c4
fix sync test compilation
2017-03-21 21:00:31 +01:00
Robert Habermeier
bc9c1d4824
use a database in ethcore-light
2017-03-21 20:57:13 +01:00
Robert Habermeier
21771aa1a6
don't keep headers in memory to avoid DoS
2017-03-21 20:23:58 +01:00
Robert Habermeier
d013a13be6
header_chain writes to database
2017-03-21 19:45:52 +01:00
Robert Habermeier
797a3e1cd9
EIP198 and built-in activation ( #4926 )
...
* EIP198 and built-in activation
* address review
2017-03-21 19:36:38 +03:00
GitLab Build Bot
3687a7c717
[ci skip] js-precompiled 20170321-162716
2017-03-21 16:30:00 +00:00
Nicolas Gotchac
030d01102c
Fix MethodDecoding for Arrays ( #4977 )
...
* Fix TypedInputs
* Remove unused code in inputQueries
* Use TypedInputs in Contract Events
* Linting
* Don't re-render events every second...
2017-03-21 17:02:41 +01:00
Nicolas Gotchac
c7e6992239
Try to fix WS race condition connection ( #4976 )
...
* Try to fix wrong token logic
* Linting
2017-03-21 17:01:32 +01:00
Jaco Greeff
cb881108c3
eth_sign where account === undefined ( #4964 )
...
* Update for case where account === undefined
* Update tests to not mask account === undefined
* default account = {} where undefined (thanks @tomusdrw)
2017-03-21 16:58:52 +01:00
GitLab Build Bot
1a6f23ad2b
[ci skip] js-precompiled 20170321-145513
2017-03-21 14:58:06 +00:00
Nicolas Gotchac
9b9cd451d1
Fix references to api outside of parity.js ( #4981 )
2017-03-21 15:36:47 +01:00
Robert Habermeier
fe52e969b6
Merge branch 'master' into pip-msg
2017-03-21 15:24:47 +01:00
GitLab Build Bot
213f61e826
[ci skip] js-precompiled 20170321-131503
2017-03-21 13:17:48 +00:00
Nicolas Gotchac
37ece36685
Fix Password Dialog forms style issue ( #4968 )
2017-03-21 13:56:32 +01:00
Tomasz Drwięga
958a8f66a0
Merge branch 'master' into new-jsonrpc
2017-03-21 09:35:50 +01:00
Tomasz Drwięga
badb3729c9
Changing Mutex into RwLock for transaction queue ( #4951 )
...
* Changing Mutex into RwLock for transaction queue
* Fixing merge
* little fix
2017-03-20 19:15:02 +01:00
keorn
e228de18e2
Disable max seal period for external sealing ( #4927 )
...
* no max sealing when external
* force internal sealing
2017-03-20 19:14:49 +01:00
Jaco Greeff
05cd715c39
Attach hardware wallets already in addressbook ( #4912 )
...
* Attach hardware wallets already in addressbook
* Only set values changed
2017-03-20 19:14:39 +01:00
Marek Kotewicz
a555686bcd
rlp serialization refactor ( #4873 )
...
* fixed naming of rlp modules
* RlpStream cleanup
* appending short rlp lists (0...55 bytes) is 25% faster
* RlpStream does not use bytes module, nor trait Stream
* removed unused code from rlp module
* compiling ethcore-util with new rlp serialization
* compiling parity with new rlp serialization
* fixed compiling ethcore-light with new rlp serialization
* fixed compiling ethsync with new rlp serialization
* removed redundant comment, print
* removed redundant double-space
* replace usage of WriteBytesExt with ByteOrder
2017-03-20 19:14:29 +01:00
Arkadiy Paronyan
16860c3f79
Bump nanomsg ( #4965 )
2017-03-20 16:03:16 +01:00
Tomasz Drwięga
1d87f24715
Bump
2017-03-20 12:06:42 +01:00
Tomasz Drwięga
6fa9393a25
Merge branch 'master' into new-jsonrpc
2017-03-20 10:30:53 +01:00
Arkadiy Paronyan
354ec19e3b
Always send full chunks ( #4960 )
2017-03-19 18:34:31 +01:00
GitLab Build Bot
99c247fe9f
[ci skip] js-precompiled 20170319-171327
2017-03-19 17:16:05 +00:00
Denis S. Soldatov aka General-Beck
2d477946ea
alow failure to coverage
2017-03-19 19:10:18 +03:00
Nicolas Gotchac
c009a289d5
Fix outputs in Contract Constant Queries ( #4953 )
2017-03-19 08:52:14 +01:00
Michael Egger
4ebd597354
start parity after network.target ( #4952 )
2017-03-19 08:52:00 +01:00
Tomasz Drwięga
34d28189ea
Remove transaction RPC ( #4949 )
2017-03-19 08:46:51 +01:00
Callum Macdonald
124ab28c9e
Swap out ethcore.io url ( #4947 )
...
It throws a certificate error on HTTPS because the certificate is only valid on parity.io.
2017-03-19 08:45:39 +01:00
Marek Kotewicz
c36f4266d2
Merge pull request #4933 from paritytech/signing-fix
...
Don't remove confirmed requests to early.
2017-03-18 15:19:48 +01:00
Marek Kotewicz
91ab91cfb9
Merge pull request #4930 from paritytech/notify-sealing-master
...
Ensure sealing work enabled in miner once subscribers added
2017-03-18 15:19:02 +01:00
Jaco Greeff
e756b09e5b
Add z-index to small modals as well ( #4923 )
2017-03-18 10:30:18 +01:00
debris
701e116dde
Merge branch 'master' of github.com:ethcore/parity into pip-msg
2017-03-17 23:38:49 +01:00
debris
aa6ee10759
Merge branch 'master' of github.com:ethcore/parity into notify-sealing-master
2017-03-17 23:37:56 +01:00
debris
97e0df1363
Merge branch 'master' into signing-fix
2017-03-17 23:25:38 +01:00
Marek Kotewicz
1dddbf35d6
Merge pull request #4946 from paritytech/multihash
...
Bump nanomsg
2017-03-17 14:31:30 +01:00
Robert Habermeier
8be41ad946
Merge branch 'master' into pip-msg
2017-03-17 14:13:10 +01:00
arkpar
7e9936a3cd
bump nanomsg
2017-03-17 14:10:09 +01:00
Marek Kotewicz
83f56c3ad9
Merge pull request #4943 from paritytech/multihash
...
Bumping multihash and libc
2017-03-17 14:02:56 +01:00
Tomasz Drwięga
8c98ddb843
Updating nanomsg
2017-03-17 13:47:05 +01:00
Tomasz Drwięga
0c051fb78e
Bumping multihash and libc
2017-03-17 13:20:10 +01:00
Tomasz Drwięga
c13f01c4f9
Using dedicated branch for jsonrpc
2017-03-17 10:13:47 +01:00
Robert Habermeier
2ee3a7282b
adjust to minor on_demand API changes in RPC
2017-03-17 00:14:29 +01:00
Robert Habermeier
fa42b6acec
port ethsync to PIP messages
2017-03-16 23:51:47 +01:00
Robert Habermeier
b5527415d6
get on_demand tests to compile
2017-03-16 20:33:45 +01:00
Robert Habermeier
04f106aad8
migrate oneshot::complete to send in on_demand
2017-03-16 20:29:06 +01:00
Robert Habermeier
cbb9314531
use PIP messages in on_demand, old API
2017-03-16 20:23:59 +01:00
Tomasz Drwięga
44052e7d8d
Merge branch 'master' into new-jsonrpc
2017-03-16 16:04:30 +01:00
Tomasz Drwięga
579cff478d
Fixing deprecated methods of tokio_core
2017-03-16 15:48:08 +01:00
GitLab Build Bot
f84fcfee04
[ci skip] js-precompiled 20170316-124008
2017-03-16 12:42:56 +00:00
Nicolas Gotchac
7846544c1b
Edit ETH value, gas and gas price in Contract Deployment ( #4919 )
...
* Fix typo
* Add Value capabilities to Contract Deployment
* Add Extras settings for Contract Deployment (#4483 )
* Fix deploy in API
2017-03-16 13:18:28 +01:00
Tomasz Drwięga
930c8b63db
Don't remove confirmed requests to early.
2017-03-16 13:15:56 +01:00
Tomasz Drwięga
491eeb9878
Better invalid encoding messages
2017-03-16 12:48:51 +01:00
NikVolf
daca82bdfc
fix condition check
2017-03-16 04:16:05 +03:00
NikVolf
131aa14afa
ensure sealing work enabled if notifier registed
2017-03-16 03:38:50 +03:00
Denis S. Soldatov aka General-Beck
57d718fde1
add coverage to master
2017-03-16 01:24:23 +03:00
Denis S. Soldatov aka General-Beck
cb79859c0e
Update cov.sh
...
update coverage for RUST&JS
[ci skip]
2017-03-16 01:21:58 +03:00
GitLab Build Bot
790bd87bc3
[ci skip] js-precompiled 20170315-182430
2017-03-15 18:27:17 +00:00
Nicolas Gotchac
ba07c32300
Add ability to configure Secure API (for #4885 ) ( #4922 )
2017-03-15 19:15:05 +01:00
GitLab Build Bot
8d16cdf12f
[ci skip] js-precompiled 20170315-155713
2017-03-15 16:00:18 +00:00
Nicolas Gotchac
a25d935a1d
Add Token image from URL ( #4916 )
2017-03-15 16:49:47 +01:00
Nicolas Gotchac
f8aec7571f
Use the registry fee in Token Deployment dapp ( #4915 )
2017-03-15 16:49:26 +01:00
keorn
1f7fb1591d
Add reseal max period ( #4903 )
...
* add reseal max period
* fix rpc
2017-03-15 14:04:42 +01:00
Marek Kotewicz
5f103ee33d
Detect rust compiler version in Parity build script, closes 4742 ( #4907 )
...
* Detect rust compiler version in Parity build script, closes #4742
* updated required compiler version message
* fixed typo
2017-03-15 14:03:11 +01:00
GitLab Build Bot
240ea8a136
[ci skip] js-precompiled 20170315-124802
2017-03-15 12:50:47 +00:00
Nicolas Gotchac
e4c61a5fab
Add Vaults logic to First Run ( #4894 ) ( #4914 )
2017-03-15 13:40:18 +01:00
Marek Kotewicz
b27138e93f
Updated gcc crate to remove one of duplicated dependencies ( #4909 )
2017-03-15 12:13:19 +01:00
Denis S. Soldatov aka General-Beck
1959f0ae12
fix docker-build
...
[ci skip]
2017-03-14 20:21:51 +03:00
Tomasz Drwięga
57770ce84c
Renaming evm binary to avoid conflicts. ( #4899 )
2017-03-14 13:08:55 +01:00
Tomasz Drwięga
2dca24cc28
Traces error handling ( #4849 )
2017-03-14 13:04:32 +01:00
Jaco Greeff
7c45178076
Add intitial max-width to sections ( #4895 )
2017-03-14 13:04:00 +01:00
Jaco Greeff
e12bde8e5a
Move background z-index to -1 ( #4893 )
2017-03-14 13:03:44 +01:00
Arkadiy Paronyan
5031221369
Removed libudev-dev
2017-03-14 13:02:46 +01:00
GitLab Build Bot
43d391501e
[ci skip] js-precompiled 20170314-110423
2017-03-14 11:06:46 +00:00
Maciej Hirsz
7df4ff2606
Merge pull request #4900 from ethcore/mh-guide
...
Spelling :)
2017-03-14 11:57:46 +01:00
Tomasz Drwięga
b51d7e9f6a
Merge branch 'master' into new-jsonrpc
2017-03-14 11:48:09 +01:00
Arkadiy Paronyan
43871e393c
Additional kovan params ( #4892 )
2017-03-14 11:41:56 +01:00
maciejhirsz
ef3569741c
Spelling :)
2017-03-14 11:39:01 +01:00
GitLab Build Bot
84fcefba1b
[ci skip] js-precompiled 20170314-103037
2017-03-14 10:32:58 +00:00
Jaco Greeff
7525cb5ee4
trigger js-precompiled build ( #4898 )
2017-03-14 11:23:50 +01:00
Arkadiy Paronyan
e0d554e0ca
Recalculate receipt roots in close_and_lock ( #4884 )
2017-03-13 17:47:43 +01:00
Robert Habermeier
599f81daa9
split request filling into fill,complete
2017-03-13 16:06:58 +01:00
Tomasz Drwięga
8bf5be0cc4
New version of jsonrpc.
2017-03-13 15:49:52 +01:00
Robert Habermeier
f0a587d310
request builder improvements
2017-03-13 13:36:03 +01:00
GitLab Build Bot
29bed6ff69
[ci skip] js-precompiled 20170313-122643
2017-03-13 12:32:24 +00:00
Nicolas Gotchac
8a37f9599f
Reload UI on network switch ( #4864 )
...
* Reload UI on network switch
* Don't bither with timeout.
2017-03-13 13:19:43 +01:00
Svyatoslav Nikolsky
fddbc9e5cb
Secretstore DKG protocol draft + distributed encryption/decryption tests ( #4725 )
...
* ECDKG protocol prototype
* added test for enc/dec math
* get rid of decryption_session
* added licenses
* fix after merge
* get rid of unused serde dependency
* doc
* decryption session [without commutative enc]
* failed_dec_session
* fixed tests
* added commen
* added more decryption session tests
* helper to localize an issue
* more computations to localize error
* decryption_session::SessionParams
* added tests for EC math to localize problem
2017-03-13 12:54:56 +01:00
Jaco Greeff
b7862ac23a
Update parity-ui-precompiled with branch ( #4850 )
...
* Update parity-ui-precompiled with branch
* In-place sed via -i
* Explicitly specify branch
* Only in-place edit branch (thanks @ngotchac)
* Add override & single-line comment
2017-03-13 12:52:02 +01:00
Jaco Greeff
90a5c9e489
Base infrastructure/contracts deployment dapp ( #4726 )
...
* Add deploy dapp
* Filter by dapp id
* WIP
* Contract deployment operational
* Additional contracts
* unicode icons
* Column layout
* app deployment
* DRY up lists
* Remove unused function
* Add basiccoin deployment & tokenreg
* Externalise code
* Check for code versions
* Gavcoin, Email & SMS contracts
* Update to latest email contract
* Deploy & register badges
* Add jg external apps
* Check owner for deleted registry entries
* DRY estimate/post
* Add wallet library to deployment
2017-03-13 12:49:26 +01:00
Arkadiy Paronyan
2924d0a20f
OSX Installer is no longer experimental ( #4882 )
...
* OSX Installer is no longer experimental
* osx -> macos
2017-03-13 12:36:55 +01:00
Gav Wood
3041c95408
Chain-selection from UI ( #4859 )
...
* First little bits for chain-selection.
* Provide RPCs and get settings through to user defaults.
* Hasty stash.
* Fix updater accidentally redownloading.
* Finish up.
* Add JS tests.
* Hypervisor should never run a binary modified before itself.
* Style.
* Help tweak.
* Fix test compile.
* Fix JS test
* Build fix for tests.
* Revert default chain name
* Another test
* Use spec name via client.
* Fix mock up.
* whitespace
[ci:skip]
* whitespace
[ci:skip]
* remove exit/restart endpoints.
2017-03-13 12:10:53 +01:00
Marek Kotewicz
8a67a0a80a
removed redundant (and unused) FromJson trait ( #4871 )
2017-03-13 11:42:27 +01:00
GitLab Build Bot
2ee8f07432
[ci skip] js-precompiled 20170312-211107
2017-03-12 21:17:02 +00:00
gregg dourgarian
18b29832ac
fix typos and grammar ( #4880 )
2017-03-12 22:02:00 +01:00
Nikolay Volf
4af49038cd
Remove old experimental remote db code ( #4872 )
2017-03-12 23:49:33 +04:00
Marek Kotewicz
3fe3353696
removed redundant FixedHash trait, fixes #4029 ( #4866 )
2017-03-11 22:58:15 +04:00
Marek Kotewicz
5d5e45ec0d
Merge pull request #4870 from ethcore/jsonrpc-dep
...
Reference JSON-RPC more changes-friendly
2017-03-11 18:41:11 +01:00
GitLab Build Bot
79afe2d7fb
[ci skip] js-precompiled 20170311-150617
2017-03-11 15:12:20 +00:00
NikVolf
429e1c7a27
bind to branch
2017-03-11 17:44:39 +03:00
Nicolas Gotchac
e73d867dab
Better handling of Solidity compliation ( #4860 )
...
* Better use of SW
* Safe-guard against pending SW register bug (in Chrome)
* Added a simple Worker for Solidity compilation
2017-03-11 15:25:45 +01:00
Nicolas Gotchac
1c37ea5860
Go through contract links in Transaction List display ( #4863 )
...
* Go through contract links (#4822 )
* Fix tests, add one for /contracts/<address>
2017-03-11 15:25:36 +01:00
Nicolas Gotchac
96f4033a40
Fix Gas Price Selector Tooltips ( #4865 )
2017-03-11 15:25:27 +01:00
Gav Wood
5684906d3e
Fix auto-updater. ( #4867 )
2017-03-11 14:45:50 +01:00
GitLab Build Bot
b0264a6af2
[ci skip] js-precompiled 20170310-184737
2017-03-10 18:53:39 +00:00
Nicolas Gotchac
e2069d2e29
Don't check for enode, don't fail if no enode ( #4495 ) ( #4861 )
2017-03-10 19:40:47 +01:00
GitLab Build Bot
45414e6cfe
[ci skip] js-precompiled 20170310-151240
2017-03-10 15:18:28 +00:00
Nicolas Gotchac
dd529575f6
Subscribe to accounts info in Signer / ParityBar ( #4738 ) ( #4856 )
2017-03-10 15:46:13 +01:00
Arkadiy Paronyan
bc9464fcbd
Removed link directive ( #4841 )
2017-03-10 15:25:02 +01:00
Nicolas Gotchac
95745ef4c8
Fix paste in Inputs ( #4854 )
...
* Wait for the value to have changed in the input
* Better onPaste handler // Use ESC to revert to initial value
2017-03-10 14:08:21 +01:00
GitLab Build Bot
e5defeaada
[ci skip] js-precompiled 20170310-123911
2017-03-10 12:45:42 +00:00
Nicolas Gotchac
eebb8b87a4
Refactoring of the Dapp Registry ( #4589 )
...
* Add React Hot Loader to DappReg dapp
* Updated colours
* Add DappCards
* Dapp Modal with manifest displayed
* Add input to the Dapp Modal
* WIP // Editing a Dapp
* Clean-Up
* Linting
* CleanUp and separate dapp from dappS
* Semi-working updates
* Working Editing of a Dapp
* OCD
* Linting
* Add a Dapp -- WIP
* Register a new Dapp
* WIP Dapps
* Working update / delete / register
* Better promises
* Working updates for DappReg
* Fully functional again !
* Generic Card Component
* Dashed Register Card
* Cleanups
* Cleanups
* Add Actions to Modal
* Clean-Up
* Better Close Icon
* Single place for Registry version // Fetch meta-data from Registry
* Fixing test
* Fix saving changes in dapp reg
* PR Grumbles - Part I
* PR Grumble - Part I
* PR Grumble - Part II
* DappReg Contract owner can delete dapps
2017-03-10 13:31:57 +01:00
GitLab Build Bot
e15f60b819
[ci skip] js-precompiled 20170310-111654
2017-03-10 11:25:12 +00:00
Jaco Greeff
4e5fd92e67
Extract i18n from shared UI components ( #4834 )
...
* Actionbar i18n
* ui Errors i18n
* Features i18n
* GapPriceSelector i18n
* WIP
* WIP #2
* Update methodDecoding
* ModalBox -> functional
* Signer pages i18n (missed previously)
* Update ModalBox tests
* Update variable
2017-03-10 12:04:40 +01:00
Nicolas Gotchac
d98b7aab61
Wait for the value to have changed in the input ( #4844 )
2017-03-10 11:52:27 +01:00
Jaco Greeff
8edee76f8b
Pull steps from actual available steps ( #4848 )
2017-03-10 11:38:27 +01:00
Denis S. Soldatov aka General-Beck
ca963137e9
Update README.md
...
[ci skip]
2017-03-10 13:24:18 +03:00
Denis S. Soldatov aka General-Beck
6eefecf31e
build docker with custom branch or tag
...
[ci -skip]
2017-03-10 13:23:34 +03:00
Arkadiy Paronyan
9047b4b487
Supress USB error message ( #4839 )
2017-03-10 10:25:40 +01:00
Tomasz Drwięga
0ab0cb1173
Fix RPC errors. Implement geth-compatibility option to return correct pending nonce. ( #4837 )
2017-03-10 10:25:13 +01:00
Denis S. Soldatov aka General-Beck
608c0dc613
CI: test coverage (for core) ( #4832 )
...
* test coverage
* update gitlab
add `git submodule update --init --recursive`
* test exec coverage in docker runner
* tags kcov
2017-03-10 10:12:16 +01:00
Tomasz Drwięga
aedc473f64
Lowering threshold for transactions above gas limit ( #4831 )
2017-03-10 10:11:37 +01:00
Nicolas Gotchac
be87151f1c
Fix TxViewer when no to (contract deployment) ( #4847 )
...
* Added React Hot Reload to dapps + TokenDeplpoy fix
* Fixes to the LocalTx dapp
* Don't send the nonce for mined transactions
* Don't encode empty to values for options
2017-03-10 10:08:16 +01:00
GitLab Build Bot
5e54c0fa91
[ci skip] js-precompiled 20170309-190359
2017-03-09 19:09:36 +00:00
Nicolas Gotchac
3bb66d03ee
Fix method decoding ( #4845 )
...
* Fix contract deployment method decoding in Signer
* Linting
2017-03-09 19:56:10 +01:00
Nicolas Gotchac
3478c16e10
Added React Hot Reload to dapps + TokenDeplpoy fix ( #4846 )
2017-03-09 19:55:48 +01:00
Nicolas Gotchac
bd00256e0c
Uniq array of ids ( #4843 )
2017-03-09 19:55:11 +01:00
Robert Habermeier
64342d200c
return only complete headers responses
2017-03-09 17:28:49 +01:00
GitLab Build Bot
b196635816
[ci skip] js-precompiled 20170309-160350
2017-03-09 16:09:29 +00:00
Nicolas Gotchac
5342a482b5
Fixes to the Registry dapp ( #4838 )
...
* Fix wrong ABI methods
* Fix
2017-03-09 16:55:57 +01:00
Robert Habermeier
391eb4b66c
get network tests working
2017-03-09 16:55:13 +01:00
Denis S. Soldatov aka General-Beck
ea020948fc
push-release<->build
2017-03-09 01:34:00 +03:00
Denis S. Soldatov aka General-Beck
6062aa5dcd
fix windows build
...
rm parity.pdb
2017-03-08 23:49:34 +03:00
Robert Habermeier
8fb0a2d417
move request_builder -> request::builder
2017-03-08 20:11:22 +01:00
Robert Habermeier
aea9b1d6cc
request builder tests
2017-03-08 20:07:45 +01:00
Robert Habermeier
d9087dd2b6
roundtrip tests for request types
2017-03-08 19:50:26 +01:00
Robert Habermeier
868f83e6ca
Merge branch 'master' into pip-msg
2017-03-08 18:55:21 +01:00
Robert Habermeier
a1186727af
fix cost table RLP encoding
2017-03-08 18:38:25 +01:00
Robert Habermeier
9268a1f59c
get tests compiling
2017-03-08 18:27:29 +01:00
Jaco Greeff
ca1efc3d77
Show token icons on list summary pages ( #4826 )
...
* Adjust balance overlay margins (no jumps)
* Img only balances, small verifications
* Invalid tests removed
* Always wrap display (Thanks @ngotchac)
* Update tests to reflect reality
2017-03-08 18:07:14 +01:00
Robert Habermeier
9692616958
re-do cost table
2017-03-08 18:01:41 +01:00
Robert Habermeier
bb39f104f4
implement requesting from
2017-03-08 17:37:07 +01:00
keorn
be21671c1c
Calibrate step before rejection ( #4800 )
...
* calibrate before rejection
* change flag name
* fix merge
2017-03-08 17:25:50 +01:00
Robert Habermeier
ee034185a5
handle response packets
2017-03-08 15:28:46 +01:00
keorn
a84a10ff03
Add replay protection ( #4808 )
...
* add eip155
* make network_id default
2017-03-08 14:44:07 +01:00
Arkadiy Paronyan
731f28a8c0
Better windows icon ( #4804 )
2017-03-08 14:42:56 +01:00
keorn
98be191b25
Fix validator contract syncing ( #4789 )
...
* make validator set aware of various states
* fix updater build
* clean up contract call
* failing sync test
* adjust tests
* nicer indent [ci skip]
* revert bound divisor
2017-03-08 14:41:24 +01:00
Robert Habermeier
8a3b5c6332
Remote transaction execution ( #4684 )
...
* return errors on database corruption
* fix tests, json tests
* fix remainder of build
* buffer flow -> request credits
* proving state backend
* generate transaction proofs from provider
* network messages for transaction proof
* transaction proof test
* test for transaction proof message
* fix call bug
* request transaction proofs from on_demand
* most of proved_execution rpc
* proved execution future
2017-03-08 14:39:44 +01:00
GitLab Build Bot
5bbcf0482b
[ci skip] js-precompiled 20170308-122756
2017-03-08 12:38:37 +00:00
Nicolas Gotchac
02c51c83cd
Better logic for contract deployments ( #4821 )
2017-03-08 13:21:39 +01:00
Nicolas Gotchac
94a39619b5
Fix default values for contract queries ( #4819 )
2017-03-08 12:26:03 +01:00
Jaco Greeff
f16b53d92a
Adjust selection colours/display ( #4811 )
...
* Adjust selection colours to match with mui
* allow -> disable (simplify selections)
* Only use top-border
* Overlay selection line
* Slightly more muted unselected
* Restore address icon
2017-03-08 12:00:27 +01:00
Nicolas Gotchac
f0f2d00924
Update the key ( #4817 )
2017-03-08 12:00:04 +01:00
GitLab Build Bot
81b57a57c7
[ci skip] js-precompiled 20170307-211202
2017-03-07 21:17:27 +00:00
Nicolas Gotchac
48e5d82186
Fix SectionList hovering issue ( #4749 )
...
* Fix SectionList Items hover when <3 items
* Even easier...
2017-03-07 22:03:52 +01:00
GitLab Build Bot
7638b2c9e8
[ci skip] js-precompiled 20170307-195934
2017-03-07 20:06:34 +00:00
Robert Habermeier
dbd05e6c92
handle request packet in LightProtocol
2017-03-07 20:58:23 +01:00
Nicolas Gotchac
a587815ddc
Re-Introducing HappyPack ( #4669 )
...
* Updating Dev Dependencies (minor version updates)
* Re-introduce HappyPack
* Added Yarn Lock file
* Use HappyPack
* Linting
* Delete yarn lock file
2017-03-07 20:39:36 +01:00
Jaco Greeff
c3c83086bc
SMS Faucet ( #4774 )
...
* Faucet
* Remove flakey button-index testing
* Only display faucet when sms verified (mainnet)
* simplify availability checks
* WIP
* Resuest from verified -> verified
* Update endpoint, display response text
* Error icon on errors
* Parse hash text response
* Use /api/:address endpoint
* hash -> data
* Adjust sms-certified message
2017-03-07 20:21:07 +01:00
Nicolas Gotchac
4d08e7b0ae
Update Wallet to new Wallet Code ( #4805 )
...
* Update Wallet Version
* Update Wallet Library
* Update Wallets Bytecodes
* Typo
* Separate Deploy in Contract API
* Use the new Wallet ABI // Update wallet code
* WIP .// Deploy from Wallet
* Update Wallet contract
* Contract Deployment for Wallet
* Working deployments for Single Owned Wallet contracts
* Linting
* Create a Wallet from a Wallet
* Linting
* Fix Signer transactions // Add Gas Used for transactions
* Deploy wallet contract fix
* Fix too high gas estimate for Wallet Contract Deploys
* Final piece ; deploying from Wallet owned by wallet
* Update Wallet Code
* Updated the Wallet Codes
* Fixing Wallet Deployments
* Add Support for older wallets
* Linting
2017-03-07 20:19:55 +01:00
Robert Habermeier
04291fe71e
complete initial request changes
2017-03-07 19:48:07 +01:00
Denis S. Soldatov aka General-Beck
973bb63dca
update gitlab-ci
...
remove temp kcov cmd
[ci skip]
2017-03-07 22:33:08 +04:00
Tomasz Drwięga
4868f758bf
Allow specifying extra cors headers for dapps ( #4710 )
2017-03-07 17:33:28 +01:00
Arkadiy Paronyan
ae3f85bd5b
v1.7 ( #4730 )
2017-03-07 17:29:27 +01:00
Jaco Greeff
3fb8466c40
Bump package.json for master 1.7 ( #4731 )
...
* Bump package.json for master 1.7
* Update contributors
2017-03-07 17:29:15 +01:00
Robert Habermeier
b396b56e34
encode and decode responses
2017-03-07 17:18:26 +01:00
Igor Artamonov
63bc942e41
update ETC bootnodes ( #4794 )
2017-03-07 05:34:48 +01:00
Denis S. Soldatov aka General-Beck
2f7f95d519
update gitlab-ci
...
add `kcov` cmd
2017-03-07 03:21:11 +04:00
Denis S. Soldatov aka General-Beck
4e1816cd00
test coverage
2017-03-07 03:16:32 +04:00
Denis S. Soldatov aka General-Beck
374d7c879e
push-release after build
2017-03-07 01:56:19 +04:00
Gav Wood
cec37207be
Update comments and reg ABI ( #4787 )
...
* Update comments.
* Fix up new ABI.
2017-03-06 21:37:38 +01:00
Denis S. Soldatov aka General-Beck
344b5b120f
update Dockerfile for hub
...
add BUILD_TAG ARG
[ci skip]
2017-03-06 22:46:35 +04:00
Denis S. Soldatov aka General-Beck
38884cdf82
update docker-build
...
add arg
[ci skip]
2017-03-06 22:44:41 +04:00
Robert Habermeier
87f3d53607
new requests in provider.
2017-03-06 17:36:56 +01:00
Robert Habermeier
8e9faa416d
proofs of non-existance in ProvingBlockChainClient
2017-03-06 17:03:58 +01:00
GitLab Build Bot
24aac8fa89
[ci skip] js-precompiled 20170306-142052
2017-03-06 14:26:42 +00:00
Tomasz Drwięga
4f934cf2c2
Optimize signature for fallback function. ( #4780 )
2017-03-06 15:11:39 +01:00
Robert Habermeier
41effadb94
RLP encoding and decoding for requests
2017-03-06 12:21:06 +01:00
GitLab Build Bot
0de8771007
[ci skip] js-precompiled 20170306-093959
2017-03-06 09:45:14 +00:00
Tomasz Drwięga
4d203d563c
Rephrasing token generation screen. ( #4777 )
2017-03-06 10:32:41 +01:00
GitLab Build Bot
a02063f348
[ci skip] js-precompiled 20170306-080251
2017-03-06 08:08:05 +00:00
Jaco Greeff
0b24a3d7f6
Etherscan links based on netVersion identifier ( #4772 )
...
* Use netVersion to determine external links
* Update additional isTest references
2017-03-06 08:54:59 +01:00
Jerome de Tychey
944dcdc010
Update README.md ( #4762 )
...
Fix for cargo fail when building from source
2017-03-06 08:49:52 +01:00
GitLab Build Bot
cabf251280
[ci skip] js-precompiled 20170305-093606
2017-03-05 09:41:41 +00:00
Jaco Greeff
5a7cbb3e5b
Fix invalid props ( #4766 )
2017-03-05 10:27:18 +01:00
keorn
d68ea777a2
Extend authority round consensus test ( #4756 )
...
* add auth round test case
* correct fork assertion
2017-03-03 22:32:22 +01:00
GitLab Build Bot
2e0d005487
[ci skip] js-precompiled 20170303-190450
2017-03-03 19:10:54 +00:00
Tomasz Drwięga
edecd951ba
Revert last hyper "fix" ( #4752 )
2017-03-03 19:52:08 +01:00
Jaco Greeff
1548201551
Vault Management UI (round 3) ( #4652 )
...
* Render Dapps via SectionList
* Initial rendering of accounts via SectionList
* Width vars
* Allow classNames in certifications & tags
* Overlay of info on hover
* Adjust hover balances
* Large owner icons (align with vaults)
* Consistent block mined at message
* Attach ParityBackground to html
* Adjust page padding to align
* Lint fixes
* Link to different types of addresses
* Make content parts clickable only (a within a)
* Force Chrome hardware acceleration
* Trust the vendors... don't go crazy with transform :)
* Use faster & default transitions
* Add VaultMeta edit dialog
* Updated (WIP)
* Meta & password edit completed
* Added SelectionList component for selections
* Use SelectionList in DappPermisions
* AddDapps uses SelectionList
* Fix AccountCard to consistent height
* Display type icons in creation dialog
* Complimentary colours
* Convert Signer defaults to SelectionList
* Fix Geth import - actually pass addresses through
* Work from addresses returned via RPC
* Display actual addresses imported (not selected)
* Update tests to cover bug fixed
* Prettyfy Geth import
* Description on selection actions
* SelectionList as entry point
* Update failing tests
* Subtle selection border
* Styling updates for account details
* Add ModalBox summary
* AddAddress updated
* Display account vault information
* Allow invalid addresses to display icons (e.g. vaults)
* Display vault on edit meta
* Convert VaultAccounts to SelectionList
* Allow editing of Vault in meta
* Add tests for SectionList component
* Add tests for ModalBox component
* Add tests for VaultSelector component
* Add vaultsOpened in store
* Add ~/ui/Form/VaultSelect
* WIP
* Fix failing tests
* Move account to vault when selected
* Fix circular build deps
* EditMeta uses Form/VaultSelect
* Vault move into meta store (alignment)
* Re-apply stretch fix
* Display vault in account summary
* Add busy indicators to relevant modals
* Auto-focus description field (aligns with #4657 )
* Remove extra container (double scrolling)
* Remove unused container style
* Apply scroll fixes from lates commit in #4621
* Remove unneeded logs
* Remove extra div, fixing ParityBar overflow
* Make dapp iframe background white
* Stop event propgation on tag click
* ChangeVault component (re-usable)
* Use ChangeVault component
* Pass vaultStores in
* Icon highlight colour
* Tag-ify vault name display
* ChangeVault location
* Bothced merge, selector rendering twice
* Value can be undefined (no vault)
* Close selector on Select bug
* Fix toggle botched merge
* Update tests
* Add Vault Tags to Account Header
2017-03-03 19:50:54 +01:00
Jaco Greeff
cb118f1936
Update SelectionList indicators ( #4736 )
...
* Move selector indicators to the left
* Only display default account selection icon
2017-03-03 19:50:25 +01:00
Jaco Greeff
9b6170a37b
Update testnet detection ( #4746 )
2017-03-03 19:49:46 +01:00
Nicolas Gotchac
ec0e8f9dd6
Add StackEventListener ( #4745 )
2017-03-03 19:49:36 +01:00
Robert Habermeier
bbb50caa89
initial request definitions
2017-03-03 19:25:29 +01:00
GitLab Build Bot
ead40a8b97
[ci skip] js-precompiled 20170303-140210
2017-03-03 14:07:22 +00:00
Maciej Hirsz
d297ddbfe5
Update wiki ( #4743 )
...
- Added missing `creates` field.
- Removed deprecated methods.
2017-03-03 14:55:04 +01:00
GitLab Build Bot
4024100e74
[ci skip] js-precompiled 20170303-134752
2017-03-03 13:53:17 +00:00
Jaco Greeff
6760ae0e84
Account selector close operations ( #4728 )
...
* Close when clicking anywhere on body pane
* Allow click to propagate on address click
* Rename noCopy -> allowAddressClick
* Handle i18n strings in input
* Close on pasted addresses (valid entry)
* allowAddressClick default
* Don't do onClick on AccountCard if text is selected
* Reset filter value on close for address selection
* Better close on click for AccountSelection
2017-03-03 14:38:40 +01:00
Nicolas Gotchac
5559374676
Fix Account Selection in Signer ( #4744 )
...
* Can pass FormattedMessage to Input (eg. Status // RPC Enabled)
* Simple fixed-width fix for Accoutn Selection in Parity Signer
2017-03-03 14:32:52 +01:00
GitLab Build Bot
fd19f6f449
[ci skip] js-precompiled 20170303-130222
2017-03-03 13:07:34 +00:00
Jaco Greeff
495e5790e9
Support both V1 & V2 DataChanged events in registry ( #4734 )
...
* Add info on forks.
* Add new registry ABI
* Import registry2 & fix exports
* Select ABI based on code hash
* Render new event types (owner not available)
* New registry.
* Rename old chain.
* Fix test.
* Another fix.
* Finish rename.
2017-03-03 13:33:49 +01:00
Gav Wood
3a0c4b6539
Add info on forks. ( #4733 )
2017-03-03 08:20:25 +01:00
keorn
810c71dd66
Merge pull request #4732 from ethcore/new-chains
...
Add registry addr
2017-03-03 00:16:47 +01:00
GitLab Build Bot
0432b8410c
[ci skip] js-precompiled 20170302-230110
2017-03-02 23:07:35 +00:00
Jaco Greeff
b11caaf071
UI support for hardware wallets ( #4539 )
...
* Add parity_hardwareAccountsInfo
* Ledger Promise interface wrapper
* Initial hardwarestore
* Move ~/views/historyStore to ~/mobx
* split scanLedger
* test createEntry
* Also scan via parity_hardwareAccountsInfo
* Explanation for scanning options
* react-intl-inify tooltips
* add hwstore
* Listen for hw walet updates
* Return arrays from scanning
* Readability
* add u2f-api polyfill
* check response.errorCode
* Support hardware types in state.personal
* Tooltips (to be split into sep. PR)
* Tooltips support intl strings
* FormattedMessage for strings to Tooltip
* Fix TabBar tooltip display
* signLedger
* Use wallets as an object map
* PendingForm -> FormattedMessage
* Pending form doesn't render password for hardware
* Groundwork for JS API signing
* Show hardware accounts in list
* Cleanup rendering conditions
* Update RequestPending rendering tests (verification)
* Tests for extended signer middleware
* sign properly & handle response, error
* Align outputs between Parity & Ledger u2f
* Ledger returns checksummed addresses
* Update ethereum-tx for EIP155 support
* Update construction of tx
* Updates after sanity checks (thanks @tomusdrw)
* Allow display for disabled IdentityIcon
* Disabled accounts
* Disabled auto-disabling
* Password button ebaled for hardware
* Don't display password hint for hardware
* Disable non-applicable options when not connected
* Fix failing test
* Confirmation via ledger (u2f)
* Confirm on device message
* Cleanups & support checks
* Mark u2f as unsupported (until https)
* rewording
* Pass account & disabled flags
* Render attach device message
* Use isConnected for checking availability
* Show hardware accounts in defaults list
* Pass signerstore
* Update u2f to correct version
* remove debug u2f lib
* Update test (prop name change)
* Add ETC path (future work)
* new Buffer -> Buffer.from (thanks @derhuerst)
2017-03-02 23:51:56 +01:00
Gav
40526c5270
Merge remote-tracking branch 'origin/master' into new-chains
2017-03-02 23:49:24 +01:00
Gav
71d3fa8707
Add registry.
2017-03-02 23:47:56 +01:00
GitLab Build Bot
96d74543fc
[ci skip] js-precompiled 20170302-204757
2017-03-02 20:52:50 +00:00
Jaco Greeff
036ef77373
s/delete/forget/ for wallets ( #4729 )
2017-03-02 21:40:29 +01:00
Gav Wood
2862b3c21a
New chains ( #4720 )
...
* Add Kovan chain.
* Fix up --testnet.
* Fix tests.
* Fix test.
* fix test
* Fix test.
2017-03-02 20:24:27 +01:00
Arkadiy Paronyan
591eb76a93
Enable --warp by default ( #4719 )
...
* Enable --warp by default
* Disable warp if non-standard chain options are selected
* Add warnings if warp is specified
* Fixed tests
2017-03-02 20:04:17 +01:00
Gav
9c38ff3907
Merge branch 'new-chains' of github.com:ethcore/parity into new-chains
2017-03-02 19:58:10 +01:00
Gav
8ad6107f13
Fix test.
2017-03-02 19:53:15 +01:00
keorn
9ff6195f50
fix test
2017-03-02 17:46:47 +00:00
Gav
89910c0174
Fix test.
2017-03-02 16:09:30 +01:00
Gav
90562c1331
Fix tests.
2017-03-02 15:43:11 +01:00
Gav
bb3b2311bf
Merge remote-tracking branch 'origin/master' into new-chains
2017-03-02 15:42:03 +01:00
GitLab Build Bot
eb37d26154
[ci skip] js-precompiled 20170302-143357
2017-03-02 14:38:43 +00:00
Jaco Greeff
7653cfd88e
Fix to UglifyJS 2.8.2 to fix app build issues ( #4723 )
2017-03-02 15:26:07 +01:00
Gav
52cf44d71a
Fix up --testnet.
2017-03-02 14:46:35 +01:00
Gav
c662d1cb0a
Add Kovan chain.
2017-03-02 14:33:59 +01:00
GitLab Build Bot
5fef950503
[ci skip] js-precompiled 20170302-123938
2017-03-02 12:44:34 +00:00
Jaco Greeff
5f51fa23ea
Extract i18n strings in modals/* ( #4706 )
...
* DeployContract formatting
* PasswordManager i18n
* SaveContract i18n
* Transfer i18n
* Verification i18n
* Fix spacing on label
2017-03-02 13:29:32 +01:00
Robert Habermeier
31302e057f
provide uncle size where available ( #4713 )
2017-03-02 12:29:18 +01:00
Svyatoslav Nikolsky
cb168828a2
EC math functions ( #4696 )
...
* EC math functions
* moved math funs -> Secret methods
2017-03-02 12:27:41 +01:00
keorn
ade5a13f5b
Add registrar fields ( #4716 )
...
* add registrar field
* use constructor for dev registrar
* fix test
2017-03-02 12:25:55 +01:00
Jaco Greeff
5dd406a19a
Extract i18n strings in views/* ( #4695 )
...
* i18n for writecontract
* i18n for writecontract store
* wallet i18n
* wallet confirmations i18n
* wallet details i18n
* wallet transactions i18n
* status i18n
* status calls i18n
* status callstoolbar i18n
* status debug i18n
* status editableValue i18n
* status miningSettings i18n
* status rpcCalls i18n
* status rpcDocs i18n
* status status i18n
* signer i18n
* signer origin i18n
* signer signRequest i18n
* signer transactionMainDetails i18n
* sign transactionPending i18n
* signer transactionPending i18n
* Fix duplicate ids
* Typo
* Adapt tests for i18n
* Actionbar i18n
* contracts i18n
* contract i18n
* contract/queries i18n
* contract/events i18n
* application/frameError i18n
* Actionbar key naming
* addresses i18n
* address i18n
* accounts i18n (tooltip)
* Plural strings for owner numbers
* IdentityIcon placement
* Re-apply s/actiobar/actionbar/ after merge
2017-03-02 12:24:54 +01:00
Tomasz Drwięga
36468f3fc7
Removing network=disable from config files ( #4715 )
2017-03-02 12:23:54 +01:00
Denis S. Soldatov aka General-Beck
d436f62eb8
update gitlab-ci
...
docker build beta-release->latest
[ci skip]
2017-03-01 15:57:06 +04:00
Robert Habermeier
655c7ae7ae
Merge pull request #4687 from ethcore/fast-migrate
...
Fast in-place migration for adding and removing column families
2017-02-28 17:18:36 +01:00
GitLab Build Bot
54aee9db9b
[ci skip] js-precompiled 20170228-153914
2017-02-28 15:44:30 +00:00
Jaco Greeff
4534590f39
Display badges on summary view ( #4689 )
2017-02-28 16:31:22 +01:00
GitLab Build Bot
ea877cb91e
[ci skip] js-precompiled 20170228-132909
2017-02-28 13:35:38 +00:00
Jaco Greeff
190ed76e30
Consistent file uploads ( #4699 )
...
* FileSelect component
* Use FileSelect component in Actionbar
* Convert CreateAccount/Import to FileSelect
2017-02-28 14:24:12 +01:00
Jaco Greeff
88449671a1
Rename https://mkr.market -> https://oasisdex.com ( #4701 )
2017-02-28 14:21:19 +01:00
Jaco Greeff
ab98ec3bf7
Stop onClick propagation after click ( #4700 )
2017-02-28 14:20:43 +01:00
Jaco Greeff
1b8a47fa4a
Display ... for address summary overflows ( #4691 )
2017-02-28 14:15:48 +01:00
GitLab Build Bot
689fe9c689
[ci skip] js-precompiled 20170227-213540
2017-02-27 21:40:33 +00:00
Jaco Greeff
5e480e9fc0
Less agressive grayscale/opacity ( #4688 )
2017-02-27 22:28:21 +01:00
Robert Habermeier
b487f00173
address rightward drift
2017-02-27 19:05:02 +01:00
Robert Habermeier
da3c13f0a2
split adding and dropping columns tests
2017-02-27 18:57:22 +01:00
Denis S. Soldatov aka General-Beck
b13a446d82
update docker-build
...
fix path
2017-02-27 01:14:23 +04:00
Denis S. Soldatov aka General-Beck
2f15c75fa2
update gitlab-ci
...
fix path to Dockerfile
[ci skip]
2017-02-27 01:13:27 +04:00
Robert Habermeier
868624c6a9
return correct path for in-place migration
2017-02-26 19:30:54 +01:00
Robert Habermeier
ac82a838b8
test case and handle in-place migration correctly
2017-02-26 19:22:51 +01:00
Robert Habermeier
ed0a2567d8
docs
2017-02-26 19:11:19 +01:00
Robert Habermeier
c2c699abb9
change migration to v11 to be faster
2017-02-26 18:41:40 +01:00
Robert Habermeier
3cc007b4d6
add and remove column families dynamically
2017-02-26 18:29:35 +01:00
Robert Habermeier
af235e564e
proved execution future
2017-02-26 15:05:33 +01:00
Robert Habermeier
1ff0abc661
Merge branch 'master' into remote-tx-exec
2017-02-26 13:55:29 +01:00
Robert Habermeier
645011427a
most of proved_execution rpc
2017-02-26 13:48:56 +01:00
Robert Habermeier
1bf2b27708
Propagate trie errors upwards from State ( #4655 )
...
* state backend trait mirroring state_db API
* minimal state backend trait
make state module public
* fix json tests
* return errors on database corruption
* fix tests, json tests
* fix remainder of build
* add Backend bound on state
2017-02-26 13:10:50 +01:00
Robert Habermeier
69e82e15a3
request transaction proofs from on_demand
2017-02-25 20:10:38 +01:00
Robert Habermeier
7c541117b3
fix call bug
2017-02-25 19:01:41 +01:00
Robert Habermeier
eb9ee35d6c
Merge pull request #4632 from ethcore/state-backend
...
Generic state backend
2017-02-25 16:22:42 +01:00
Robert Habermeier
4cf62e816e
Merge branch 'state-backend' into remote-tx-exec
2017-02-25 14:31:27 +01:00
Robert Habermeier
7863d1e978
add Backend bound on state
2017-02-25 14:28:26 +01:00
Robert Habermeier
2b671b8476
test for transaction proof message
2017-02-25 12:43:43 +01:00
Robert Habermeier
32f906fe9f
transaction proof test
2017-02-25 11:54:32 +01:00
Robert Habermeier
4158693470
network messages for transaction proof
2017-02-25 11:07:38 +01:00
Robert Habermeier
92e5982127
generate transaction proofs from provider
2017-02-25 00:27:48 +01:00
Denis S. Soldatov aka General-Beck
714b46dfef
update gitlab-ci
...
add triggers to docker-build
2017-02-24 23:54:41 +04:00
Robert Habermeier
ee7779df17
proving state backend
2017-02-24 20:16:32 +01:00
Denis S. Soldatov aka General-Beck
bef33a0958
update gitlab-ci
...
[ci skip] fix `docker-build`
2017-02-24 22:00:08 +04:00
GitLab Build Bot
8bee714452
[ci skip] js-precompiled 20170224-171258
2017-02-24 17:18:20 +00:00
Jaco Greeff
609e24ef04
Enhance dialog layouts (round 1) ( #4637 )
...
* Added SelectionList component for selections
* Use SelectionList in DappPermisions
* AddDapps uses SelectionList
* Fix AccountCard to consistent height
* Display type icons in creation dialog
* Complimentary colours
* Convert Signer defaults to SelectionList
* Fix Geth import - actually pass addresses through
* Work from addresses returned via RPC
* Display actual addresses imported (not selected)
* Update tests to cover bug fixed
* Prettyfy Geth import
* Description on selection actions
* SelectionList as entry point
* Update failing tests
* Subtle selection border
* Styling updates for account details
* Add ModalBox summary
* AddAddress updated
* Convert VaultAccounts to SelectionList
* Add tests for SectionList component
* Add tests for ModalBox component
* Re-apply stretch fix
* Apply scroll fixes from lates commit in #4621
* Clear name on switch (test in #4652 , not pulling in)
* Remove refs (cleanup)
2017-02-24 18:05:39 +01:00
Jaco Greeff
570e6f32b0
Vault Management UI (round 2) ( #4631 )
...
* Add VaultMeta edit dialog
* Updated (WIP)
* Meta & password edit completed
* Added SelectionList component for selections
* Use SelectionList in DappPermisions
* AddDapps uses SelectionList
* Fix AccountCard to consistent height
* Convert Signer defaults to SelectionList
* Subtle selection border
* Display account vault information
* Allow invalid addresses to display icons (e.g. vaults)
* Display vault on edit meta
* Convert VaultAccounts to SelectionList
* Allow editing of Vault in meta
* Add tests for SectionList component
* Add tests for VaultSelector component
* Auto-focus description field (aligns with #4657 )
* Apply scroll fixes from lates commit in #4621
* Remove unneeded logs
* Remove extra div, fixing ParityBar overflow
* Disable save if password don't match
* s/disabled/readOnly/
* string -> bool
2017-02-24 18:05:04 +01:00
Nicolas Gotchac
9ff427caaf
Fix Portal broad event stopper ( #4674 )
2017-02-24 18:04:26 +01:00
keorn
7a773b42bf
custom dev presets ( #4671 )
2017-02-24 17:36:52 +01:00
Arkadiy Paronyan
ef7998f473
Max gas limit and min gas price ( #4661 )
...
* Max gas limit and min gas price
* Tests
* Limit gas limit ceiling
2017-02-24 17:34:32 +01:00
GitLab Build Bot
af45d05aee
[ci skip] js-precompiled 20170224-142855
2017-02-24 14:33:38 +00:00
Jaco Greeff
f670b180d7
Align list displays with SectionList (UI consistency) ( #4621 )
...
* Render Dapps via SectionList
* Initial rendering of accounts via SectionList
* Width vars
* Allow classNames in certifications & tags
* Overlay of info on hover
* Adjust hover balances
* Large owner icons (align with vaults)
* Consistent block mined at message
* Attach ParityBackground to html
* Adjust page padding to align
* Lint fixes
* Link to different types of addresses
* Make content parts clickable only (a within a)
* Force Chrome hardware acceleration
* Trust the vendors... don't go crazy with transform :)
* Use faster & default transitions
* Remove extra container (double scrolling)
* Remove unused container style
* Make dapp iframe background white
* Stop event propgation on tag click
2017-02-24 15:21:36 +01:00
GitLab Build Bot
afecf5b148
[ci skip] js-precompiled 20170224-134503
2017-02-24 13:50:10 +00:00
Jaco Greeff
a6ed3dc5dc
Add SelectionList component to DRY up ( #4639 )
...
* Added SelectionList component for selections
* Use SelectionList in DappPermisions
* AddDapps uses SelectionList
* Fix AccountCard to consistent height
* Convert Signer defaults to SelectionList
* Subtle selection border
* Convert VaultAccounts to SelectionList
* Add tests for SectionList component
* Apply scroll fixes from lates commit in #4621
* Remove unneeded logs
* Remove extra div, fixing ParityBar overflow
2017-02-24 14:37:56 +01:00
GitLab Build Bot
5817cfdf41
[ci skip] js-precompiled 20170224-115159
2017-02-24 11:58:15 +00:00
Jaco Greeff
38cf7d2639
Linting updates ( #4662 )
2017-02-24 12:44:38 +01:00
Jaco Greeff
0b214450e3
Misc. small UI fixes ( #4657 )
...
* Shorten menu items (accounts)
* Shorten menu items (addresses)
* Shorten menu items (contracts)
* Shorten menu items (account)
* Shorten menu items (address)
* Shorten menu items (contract)
* Auto-focus & perform default action
* Auto-focus & default action
* Auto focus for first fields (create account)
* Clear phrase & auto-focus field
* Auto-focus name fields
* Add autoFocus (Add Address)
* autoFocus address (Add Contract)
* Auto focus name field
* Auto-focus name field for EditMeta
* Auto-focus modifications (WalletSettings)
* Verification auto focus
* typo
* Double-up on keys
2017-02-24 12:26:30 +01:00
Maciej Hirsz
f97e775498
More CLI settings for IPFS API ( #4608 )
...
* TEMP: Bind to 0.0.0.0, don't check Origin
* More CLI options for IPFS
* CORS and Hosts filtering
* Allow current interface as origin
* Correctly handle CORS settings
* fix grumbles
2017-02-24 10:32:42 +01:00
keorn
9b5bcb81fd
Fix Tendermint deadlock ( #4654 )
...
* scope read
* consistent step
2017-02-24 10:26:56 +01:00
Bas
56d0ad869a
nl translations ( #4649 )
...
* translation stings copied from _default to nl
* First batch of nl translations
* Second batch of nl translations
* Syntax fix
* include new nl translation files to index
2017-02-24 10:25:28 +01:00
GitLab Build Bot
c7b3b9a565
[ci skip] js-precompiled 20170224-084932
2017-02-24 08:54:34 +00:00
Jaco Greeff
92fa4249d3
Update condition documentation (Thanks @arkpar) ( #4659 )
2017-02-24 09:40:38 +01:00
Tomasz Drwięga
daf36739ce
Bump hyper versions ( #4645 )
2017-02-24 09:22:29 +01:00
Gav Wood
76ade2fc2d
Sane updater ( #4658 )
...
* Make updater avoid downloading earlier versions.
* Disable if files can't be moved.
2017-02-24 01:06:35 +01:00
Robert Habermeier
ddbdfafc05
buffer flow -> request credits
2017-02-23 23:10:29 +01:00
Robert Habermeier
3f78c945d7
Merge pull request #4594 from ethcore/lightrpc
...
Remainder of RPC APIs implemented for the light client
2017-02-23 19:58:27 +01:00
Robert Habermeier
f169c8dbb0
fix remainder of build
2017-02-23 19:26:20 +01:00
Svyatoslav Nikolsky
88cdc92ed4
preserve vault meta when changing pwd ( #4650 )
2017-02-23 19:01:12 +01:00
Robert Habermeier
91753c53cd
fix tests, json tests
2017-02-23 18:41:01 +01:00
Robert Habermeier
3655601693
return errors on database corruption
2017-02-23 17:40:03 +01:00
GitLab Build Bot
496a6dcfa0
[ci skip] js-precompiled 20170223-141355
2017-02-23 14:21:06 +00:00
Jaco Greeff
3651095651
Fix Geth account import ( #4641 )
...
* Fix Geth import - actually pass addresses through
* Work from addresses returned via RPC
* Display actual addresses imported (not selected)
* Update tests to cover bug fixed
2017-02-23 15:04:58 +01:00
Denis S. Soldatov aka General-Beck
e60fa751eb
[ci skip]
2017-02-23 03:36:03 +04:00
Denis S. Soldatov aka General-Beck
5c57b42259
[ci skip]
2017-02-23 03:31:43 +04:00
Gav Wood
3182540d9f
Tweak some checks. ( #4633 )
...
* Tweak some checks.
* Fixed build and added a difficulty test
2017-02-22 18:24:22 +01:00
GitLab Build Bot
f3b5e2074b
[ci skip] js-precompiled 20170222-165052
2017-02-22 16:55:55 +00:00
Jannis Redmann
94fa2db986
attempt to fix subscribeToEvents test ( #4638 )
2017-02-22 17:44:11 +01:00
GitLab Build Bot
cb3c6b1bec
[ci skip] js-precompiled 20170222-150433
2017-02-22 15:09:15 +00:00
Jaco Greeff
e66d54910a
Fix selection value from RadioButtons ( #4636 )
...
* Fix selection value from RadioButtons
* Fix outdated test
2017-02-22 15:57:21 +01:00
GitLab Build Bot
3df1adc3f5
[ci skip] js-precompiled 20170222-143551
2017-02-22 14:40:40 +00:00
Jaco Greeff
6938a7a202
Convert all remaining Modals to use Portal (UI consistency) ( #4625 )
...
* FirstRun dialog -> Portal
* CreateAccount Modal -> Portal
* CreateWallet dialog -> Portal
* Transfer dialog -> Portal
* Fix failing tests
* ShapeShift dialog -> Portal
* Verification dialog -> Portal
* EditMeta dialog -> Portal
* PasswordManager dialog -> Portal
* WalletSettings dialog -> Portal
* AddAddress dialog -> Portal
* s/delete address/forget address/
* AddContract dialog -> Portal
* DeployContract dialog -> Portal
* ExceuteContract dialog -> Portal
* LoadContract dialog -> Portal
* SaveContract dialog -> Portal
* UpgradeParity dialog -> Portal
* Convert inline modals (tsk, tsk)
* Remove ui/Modal
* Import dialog i18n
* Button array returns (thanks @derhuerst)
* Unneeded debug
* Typo
* Readability formatting
2017-02-22 15:26:58 +01:00
GitLab Build Bot
49675483c3
[ci skip] js-precompiled 20170222-095134
2017-02-22 09:56:05 +00:00
Robert Habermeier
636b2deb2e
fix json tests
2017-02-22 10:52:58 +01:00
Jaco Greeff
5337bf6413
Default account selection update ( #4609 )
...
* Default accounts setting - account provider
* RPC support for default accounts
* Updating JS code
* Rename whitelist to addresses
* Set the defaults using default, allowing for null/full lists
* Update failing tests (after merge)
* Fix merge with wrong rpc call names
* One account needs to be selected
2017-02-22 10:43:02 +01:00
Jaco Greeff
0a85fc7a3e
Display ETH balance in overlay account selector ( #4588 )
...
* Add account balance display from ParityBar
* Ellipsis with title
* Balance display in Dapp permissions
* Add balance to vault account selector
* Add key prop to accounts in Vault
* Fix failing test (missing redux prop)
2017-02-22 10:42:42 +01:00
Robert Habermeier
fba4bda0ff
Merge pull request #4627 from raingloom/patch-1
...
fixed minor grammar mistake in readme
2017-02-22 08:56:14 +01:00
Rain Gloom
df414c8186
fixed minor grammar mistake in readme
2017-02-21 18:08:47 +01:00
Denis S. Soldatov aka General-Beck
502af0e29b
[ci skip] update gitlab-ci
...
fix path to `tools`
add `tools` in `linux-stable-debian`
2017-02-21 16:42:18 +04:00
GitLab Build Bot
80155ef93a
[ci skip] js-precompiled 20170221-120741
2017-02-21 12:12:14 +00:00
Jaco Greeff
61e3d036d9
Extract new available i18n strings ( #4623 )
2017-02-21 12:59:36 +01:00
Robert Habermeier
1fba73c15e
minimal state backend trait
...
make state module public
2017-02-21 12:35:21 +01:00
Robert Habermeier
ac9716a5ce
state backend trait mirroring state_db API
2017-02-21 11:13:02 +01:00
Robert Habermeier
d8b1cfe082
Merge branch 'master' into lightrpc
2017-02-20 18:01:29 +01:00
Robert Habermeier
62b340f2b9
Save pending local transactions in the database ( #4566 )
...
* Create new column family for local node info
* remove DBTransaction::new reliance on DB
* KeyValueDB trait
* InMemory KeyValueDB implementation
* journaldb generic over KVDB
* make most of `ethcore` generic over KVDB
* fix json tests compilation
* get all tests compiling
* implement local store (just for transactions)
* finish local store API, test
* put everything into place
* better test for skipping bad transactions
* fix warning
* update local store every 15 minutes
* remove superfluous `{}`s
2017-02-20 17:21:55 +01:00
GitLab Build Bot
00351374e4
[ci skip] js-precompiled 20170220-160616
2017-02-20 16:12:01 +00:00
Maciej Hirsz
0af2fb2a48
Merge pull request #4614 from ethcore/mh-bump-cid
...
Bump CID version to allow compilation on all platforms
2017-02-20 16:44:11 +01:00
maciejhirsz
649cedd818
Updated Cargo.lock
2017-02-20 16:42:09 +01:00
Jaco Greeff
9e210e5eda
Vault Management UI (first round) ( #4446 )
...
* Add RPCs for parity_vault (create, open, list, etc.)
* WIP
* WIP
* WIP
* WIP (create should create)
* Create & close working
* WIP
* WIP
* WIP
* Open & Close now working
* WIP
* WIP
* Merge relevant changes from js-home
* Hover actions
* WIP (start of account assignment)
* Open, Close & Account assignment works
* Fix margins
* UI updates
* Update tests
* Add the parity_{get|set}VaultMeta calls
* Handle metadata
* Adjust padding in Open/Close modals
* moveAccounts take both in and out
* Adjust padding
* Fix stretch
* Optimize hover stretch
* pre-merge
* Cleanup variable naming (duplication)
* Rename Vault{Close,Open} -> Vault{Lock,Unlock}
* clearVaultFields uses setters
* TODO for small Portal sizes
* Vaults rendering tests
* .only
* libusb compile
* VaultCard rendering tests
* Update message keys (rename gone rouge)
* Display passwordHint op vault unlock
* Update failing tests
* Manually dispatch allAccountsInfo when move completed
* Open/Close always shows vault image in colour
* Password submit submits modal (PR comment)
* Add link to account
2017-02-20 16:40:01 +01:00
keorn
ac6180a6fe
seals_internally ( #4613 )
2017-02-20 16:35:53 +01:00
Jaco Greeff
44769fcd4a
Show only known accounts/wallets/addresses on Home ( #4612 )
...
* Don't render unknown entries
* Only render non-null items
* Remove (now) invalid failing test
2017-02-20 16:34:38 +01:00
maciejhirsz
348559491a
Bump CID version to allow compilation on all platforms
2017-02-20 16:34:16 +01:00
Tomasz Drwięga
72998d3ce3
Proper default accounts RPCs ( #4580 )
...
* Default accounts setting - account provider
* RPC support for default accounts
* Updating JS code
* Rename whitelist to addresses
2017-02-20 16:33:12 +01:00
Tomasz Drwięga
1949d44d0c
Hash-fetch errors in case upstream returns non-200 ( #4599 )
2017-02-20 16:30:14 +01:00
Arkadiy Paronyan
0aad8a87ae
Added pending transaction info to eth_getTransactionByHash ( #4570 )
...
* Return condition info for pending transactions
* Fixed warnings
2017-02-20 16:19:43 +01:00
Svyatoslav Nikolsky
b9665c7cfe
Secret store - initial version ( #4567 )
...
* initial secret store commit
* various fixes
* license
* (sstore, secstore) -> secretstore
* marked KeyServer trait as IPC-ready
* fixed style
* ignore requests with Origin header
* fixed tests
* fixed Origin header check
2017-02-20 16:13:21 +01:00
Denis S. Soldatov aka General-Beck
68a25d9e14
fix path to tools
2017-02-20 17:16:11 +04:00
GitLab Build Bot
31f5a1d205
[ci skip] js-precompiled 20170220-124210
2017-02-20 12:48:32 +00:00
Jaco Greeff
3fc29b9ae4
Handle invalid ABI retrieved from address_book gracefully ( #4606 )
...
* Handle invalid ABI gracefully
* Also include failed abi in log
2017-02-20 13:34:33 +01:00
Denis S. Soldatov aka General-Beck
e86837b878
target evmbin -> evm
2017-02-20 15:25:53 +04:00
Robert Habermeier
998cb0d209
Merge pull request #4583 from ethcore/sstore-opt
...
Optimize key directory reloads
2017-02-17 22:27:07 +01:00
Robert Habermeier
4de208786d
trace API stubs
2017-02-17 22:21:43 +01:00
Robert Habermeier
9e761ba2ea
ParitySet stubs
2017-02-17 21:45:06 +01:00
Robert Habermeier
9316eb4ad3
(most of) parity RPC for light client
2017-02-17 21:38:43 +01:00
Denis S. Soldatov aka General-Beck
32023f1ea0
fix build path to tools
2017-02-17 23:33:14 +04:00
Denis S. Soldatov aka General-Beck
163e2af568
update Dockerfile for hub
...
nightly->latest
2017-02-17 22:11:35 +04:00
GitLab Build Bot
8c9c6744fc
[ci skip] js-precompiled 20170217-171830
2017-02-17 17:24:47 +00:00
Nicolas Gotchac
04f3ee90d8
Revert Double Click ( #4590 )
2017-02-17 18:11:10 +01:00
Robert Habermeier
39237e9d15
Merge pull request #4545 from ethcore/mh-ipfs
...
IPFS MVP
2017-02-17 17:19:56 +01:00
Robert Habermeier
3b023c82b7
fetch gas price corpus from network when needed
2017-02-17 17:08:46 +01:00
Robert Habermeier
7a857a24ae
use new histogram/corpus
2017-02-17 16:18:31 +01:00
Denis S. Soldatov aka General-Beck
a3bbdce613
update Dockerfile for hub
...
refactoring + small fix
2017-02-17 19:03:40 +04:00
Robert Habermeier
59315b0cb7
stats utility in its own crate
2017-02-17 15:16:28 +01:00
Denis S. Soldatov aka General-Beck
b35e852cb6
cargo fix
2017-02-17 15:46:43 +04:00
Arkadiy Paronyan
c2540dc215
Check for matching session before deregistering ( #4563 )
2017-02-17 12:20:25 +01:00
Robert Habermeier
54c48d14ec
Deprecate eth_compile* RPCs ( #4577 )
...
* Deprecate eth_compile* RPCs
* Add deprecation doc comments
2017-02-17 12:00:33 +01:00
Denis S. Soldatov aka General-Beck
aca808b021
update Dockerfile
...
ENTRYPOINT ["/parity/parity"]
2017-02-17 13:48:37 +04:00
Denis S. Soldatov aka General-Beck
164f1cef81
remove git pul from hub Docker
...
[ci-skip]
2017-02-17 03:56:09 +04:00
NikVolf
92d8edc1a6
unique_repr, no default impl
2017-02-16 23:04:39 +03:00
NikVolf
444065e294
refactor hashing
2017-02-16 22:53:58 +03:00
Robert Habermeier
48cf591e66
integrate cache in on-demand
2017-02-16 20:46:59 +01:00
NikVolf
513cc6261a
plug to store
2017-02-16 22:10:29 +03:00
Denis S. Soldatov aka General-Beck
a9cc9ce140
docker build no-cache
...
[ci-skip]
2017-02-16 22:58:41 +04:00
maciejhirsz
da696e4a1f
Added support for contract code by hash.
...
This is done by requests sending CID with raw binary codec (0x55).
Note: this functionality is exactly the same as fetching state-trie
due to how db internals work in Parity atm.
2017-02-16 18:39:13 +01:00
Robert Habermeier
3b9741e9d8
Implement the basic data cache
2017-02-16 18:07:28 +01:00
GitLab Build Bot
062c55d51b
[ci skip] js-precompiled 20170216-165434
2017-02-16 17:06:15 +00:00
Arkadiy Paronyan
301a707eaa
Ledger signing fixed ( #4578 )
2017-02-16 17:45:12 +01:00
Jannis Redmann
7d890c0687
remove vertx from Webpack config ( #4576 )
2017-02-16 17:43:27 +01:00
Nicolas Gotchac
b825c8e074
Better display of tags ( #4564 )
...
* WIP
* Update accounts on whitelist change in Parity Bar
* Fix AccountCard width in Parity Bar (Signer)
* Added AccountCard Example
* Use horizontal tags
* Better Tags display
* Scrollable tags
* Update PR Grumbles
* Fix tests (add tags)
* PR Grumble
2017-02-16 17:42:19 +01:00
Svyatoslav Nikolsky
00c843afea
Added vaults support to ethstore-cli ( #4532 )
...
* added vaults support to ethstore-cli
* improved error message
2017-02-16 17:42:01 +01:00
Denis S. Soldatov aka General-Beck
aa83603af8
typo fix in Dockerfile
2017-02-16 20:04:28 +04:00
Denis S. Soldatov aka General-Beck
4cd4572417
add tag ENV in Dockerfile
2017-02-16 20:03:13 +04:00
GitLab Build Bot
5bd1cf352b
[ci skip] js-precompiled 20170216-154550
2017-02-16 15:50:43 +00:00
NikVolf
43ce5bef7e
file list hash and test
2017-02-16 18:47:58 +03:00
Arkadiy Paronyan
f2027c02ef
Fixed fonts URLs ( #4579 )
2017-02-16 16:37:40 +01:00
NikVolf
d4149b965e
files list separate fn, sha3 of the list
2017-02-16 18:20:24 +03:00
Robert Habermeier
2b91c922c1
get signing network ID for light client
2017-02-16 16:08:58 +01:00
maciejhirsz
8d6275bf07
Only allow requests from Origin 127.0.0.1
2017-02-16 16:08:54 +01:00
maciejhirsz
c4b4a22203
Rename parity-ipfs to parity-ipfs-api
2017-02-16 14:51:33 +01:00
maciejhirsz
ad8e3f0230
Added CLI flags
2017-02-16 14:41:33 +01:00
GitLab Build Bot
39d4e46073
[ci skip] js-precompiled 20170216-125519
2017-02-16 12:59:57 +00:00
Jaco Greeff
c14ecefa1d
Explicitly set seconds to 0 from selector ( #4559 )
...
* Explicitly set seconds/milli to 0
* Use condition time & block setters consistently
* Fix failing test
* test for 0 ms & sec
* It cannot hurt, clone date before setting
* Prettier date test constants (OCD)
2017-02-16 13:47:51 +01:00
maciejhirsz
451cf42452
Adding CLI flags for IPFS
2017-02-15 20:29:29 +01:00
maciejhirsz
9cfa27830c
Write output as chunks
2017-02-15 19:25:57 +01:00
Denis S. Soldatov aka General-Beck
c808954413
clean Docker
...
[ci-skip]
2017-02-15 21:40:23 +04:00
Denis S. Soldatov aka General-Beck
34d8498a2c
clean Docker
...
remove RUST tools from Docker
[ci-ckip]
2017-02-15 21:37:23 +04:00
maciejhirsz
d005410e1a
No .expect on mime types
2017-02-15 18:26:35 +01:00
Denis S. Soldatov aka General-Beck
ff2c4d1178
add tools
...
add `evmbin`, `ethstore`, `ethkey` to the CI
2017-02-15 21:14:07 +04:00
maciejhirsz
eb327338e8
Tests and grumbles
2017-02-15 18:07:30 +01:00
Denis S. Soldatov aka General-Beck
06937be74b
add libudev-dev in deb
...
[ci-skip]
2017-02-15 20:09:47 +04:00
Tomasz Drwięga
efb95a59be
Fixing evmbin compilation and added standard build. ( #4561 )
2017-02-15 16:58:42 +01:00
Tomasz Drwięga
895298fc49
Alias for personal_sendTransaction ( #4554 )
2017-02-15 16:57:27 +01:00
Nikolay Volf
494a0de1e2
Key derivation in ethstore & rpc ( #4515 )
...
* initial in secret store
* generation
* test
* refactor of the derivation
* signing
* account provider
* tests for account provider
* rpc types
* rpc types converts
* rpc tests
* fix warnings
* some extra docs
* derivate -> derive
* secret() -> as_raw()
* secret() -> as_raw() in rpc
* fix merge bug
* align with new serde changes
2017-02-15 16:56:15 +01:00
GitLab Build Bot
4889cff310
[ci skip] js-precompiled 20170215-135145
2017-02-15 13:56:12 +00:00
Nicolas Gotchac
0d289c7732
Skip OOG check for simple transfers ( #4550 ) ( #4558 )
2017-02-15 14:44:14 +01:00
Robert Habermeier
36ea5550ba
Merge pull request #4501 from ethcore/light-txq
...
Light Client transaction queue, initial LightDispatcher
2017-02-15 14:06:31 +01:00
GitLab Build Bot
b38a874b18
[ci skip] js-precompiled 20170215-124941
2017-02-15 12:54:04 +00:00
Nicolas Gotchac
4bae2c751c
Fixes BadgeReg Middleware ( #4547 ) ( #4556 )
2017-02-15 13:42:55 +01:00
Nicolas Gotchac
8aaa18d75d
Fix pasting of value in Input fields ( #4555 )
...
* Fix logging and logger issues
* onPaste submit value + pasted text (#4553 )
2017-02-15 13:37:58 +01:00
GitLab Build Bot
3218c365e9
[ci skip] js-precompiled 20170215-110429
2017-02-15 11:08:57 +00:00
Jaco Greeff
efe76d7004
Tooltips with react-intl ( #4549 )
...
* Tooltips support intl strings
* FormattedMessage for strings to Tooltip
* Fix TabBar tooltip display
* r after o (PR comment)
2017-02-15 11:56:51 +01:00
GitLab Build Bot
812017f9b3
[ci skip] js-precompiled 20170214-215513
2017-02-14 22:00:39 +00:00
Nicolas Gotchac
ac27806a43
Close on double-click for Signer Account selection ( #4540 )
...
* Close on double-click + Optimistic UX (#4525 )
* PR Gumble + Tests
2017-02-14 22:47:34 +01:00
Tomasz Drwięga
5369a129ae
Signer provenance ( #4477 )
...
* Signer - Tracking Request Provenance
* Basic UI
* Changing messages
* VecDeque::from
* Fix dapps tests
* Addressing UI grumbles
2017-02-14 22:45:43 +01:00
Tomasz Drwięga
d925cc05da
Fix console dapp ( #4544 )
...
* Fixing linting issues. Better support for console as secure app
* Fixing linting issues
2017-02-14 22:45:29 +01:00
maciejhirsz
2ee2d2ea45
Added missing GPL header
2017-02-14 20:03:25 +01:00
maciejhirsz
9256aa766b
Lock file
2017-02-14 19:58:46 +01:00
maciejhirsz
3c634701dd
Squashed
2017-02-14 19:30:37 +01:00
Robert Habermeier
e591b4481b
warning on detected inconsistency
2017-02-14 19:16:46 +01:00
GitLab Build Bot
e9eed5206e
[ci skip] js-precompiled 20170214-123602
2017-02-14 12:41:22 +00:00
Jaco Greeff
71c0cc867a
Extract i18n string into i18n/_defaults (base of translations) ( #4514 )
...
* Build script to pull i18n into i18n/_default
* Fix header
* Current strings as extracted
* details_windows without prefix
* clean before build
* Alwasy extract babel strings
* clean & run build before extraction
* Update settings messages
* Put back template string (PR comment)
* PR comment cleanups & logging
* Less complicated string type check (PR comment)
* Remove node cache to extract all keys (Thanks @ngotchac)
* Merge in defaults from i18n/en (Comment by @h3ll0fr13nd)
* Unique index keys only
* Update with latest master strings
* _.defaultsDeep (Thanks to @dehurst)
* Use to-source for string formatting
* Sync with toSource output on latest master
* Updated to use/output sorted objects
2017-02-14 13:16:39 +01:00
Denis S. Soldatov aka General-Beck
7d12e383b2
windows build
...
switch to RUST stable
2017-02-14 16:09:19 +04:00
Nicolas Gotchac
e8597e2e91
Fix contract queries bug ( #4534 )
...
* Fix contract queries and multiple Address Selector issues
* Linting
* Use standard new Error
2017-02-14 13:08:38 +01:00
Robert Habermeier
1d9db578ff
ready transactions order documentation
2017-02-14 12:14:02 +01:00
Robert Habermeier
63ad8cb086
store pending transactions only once
2017-02-14 12:12:26 +01:00
Robert Habermeier
e911fc2db9
address grumbles
2017-02-14 12:05:24 +01:00
GitLab Build Bot
fefd53d4f4
[ci skip] js-precompiled 20170214-101112
2017-02-14 10:15:36 +00:00
Tomasz Drwięga
bccd0991f6
Fixing namespace of couple methods in console. ( #4538 )
2017-02-14 13:03:23 +03:00
GitLab Build Bot
dd0ef6b5ec
[ci skip] js-precompiled 20170214-073623
2017-02-14 07:40:43 +00:00
Jaco Greeff
63d2cfcbfc
Home landing page ( #4178 )
...
* Home entry point (basics)
* WIP store for web
* Add DappUrlInput component
* Updated tests
* WIP store update
* Adjust styling
* Add home tab
* Collapse first/last without extra divs
* Navigation actually navigates
* styling
* Encoding of ethlink.io URLs
* encodedUrl setup
* base58 encoded URLs
* Added decoding, updated tests to Parity-compliant
* Base32 (synced with Rust implementation via tests)
* Split URL into 63 character chunks
* Fix store test
* Cleanups
* s/ethlink/dapplink/
* Display app navigation & histroy
* Start on /accounts (for now, until expanded fully)
* Update tests
* ethlink.io -> web3.site
* Basic list layout
* Store history on navigation
* Show Accounts & Dapps
* Add skeleton for DappIcon (WIP)
* DappIcon WIP
* DappIcon in place
* Split into maneable sub-components
* WIP
* Tests for views/Home
* Swap default entry-point to /home
* Expose registry.get via lookupMeta
* Add getEntry interface, fix instance retrieval (with tests)
* Add news display component
* Add tests for added contracts/registry methods
* Fix GHH test refactoring
* render news via SectionList
* News items store directly
* Images
* News & Urls has new layout
* Convert remainder
* First run-through of MVP for SectionList
* Update tests
* Deploycontract should not override global p styles
* Allow styles overrides for head & body
* Adjust layout styling
* revert Container>flex
* Adjust sizes of history items
* Cleanups
* HistoryStore for tracking relevant routes
* Default route is still /accounts
* Fix tests
* Update 2015-2017
* Add lookupMeta & tests
* Add getEntry & tests
* Split Dapp icon into ui/DappIcon
* Update copyright dates
* Encoding for *.web3.site urls
* Dapp history retrieval
* Grow to only 40% on hover
* Update description
* Add DappUrlInput component
* Update Web views with store
* Update spec description
* Update spec description
* edited url does not allow in-place store edits
* Use /web/<hash> urls for iframe
* Removed (now) unused _list.css
* Mistamtched merge fixed
* Tab split (WIP)
* Split Tab component
* Update tests after merge
* typo
* Remove background !important
* Set item width to parent
* Set width, remove overflow-x: hidden
* Align hover overlays
* Container defaults to some opacity
* Display history from listRecentDapps
* Override styles for a tags
* Open URLs in new window when extension is available
* Fix tests after update
* AccountCard width 100%
* Re-add opening correct url in tab
* Cleanup link rendering
* Remove hardcoded news URL
* pre-merge
* Extra padding at Home bottom (Pr grumble)
* Match js-vaults stretch
* s/Web Apps via URL/Web Apps/ (PR grumble)
* Store recent wallets (PR grumble)
* Simplify inline style matching (PR comment)
* Add store for new retrieval
* Add missing observer
* Auto-link based on account type
* Fix UI overlaps
* Extra spacing
* Only show account when accountInfo is available
* Align timestamp line-heights
* Fix tests
* Update tests
* Really fix failing test (check for Connect(Account))
2017-02-14 08:29:32 +01:00
Nikolay Volf
78917d728d
Bump JSON RPC crates versions ( #4530 )
...
* json rpc bump
* some error message deviations
2017-02-13 21:34:16 +03:00
Robert Habermeier
443e8d2aed
Merge pull request #4531 from ethcore/bump-readme
...
Update rust version in README
2017-02-13 17:44:42 +01:00
Nikolay Volf
83a8ceb09b
Update rust version in readme [ci skip]
2017-02-13 19:39:46 +03:00
Robert Habermeier
073ed1a87c
lower default pruning history and memory ( #4528 )
...
--pruning-history: 1200 -> 64
--pruning-memory: 150 -> 75
2017-02-13 17:15:25 +01:00
Robert Habermeier
4f1afccf97
best_block_header function
2017-02-13 16:51:40 +01:00
Tomasz Drwięga
f1e99ea2e4
Serde 0.9 ( #4508 )
...
* Porting json
* Dapps
* Rpc & Ethstore
* New ethabi
* Last bunch of fixes
* Fixing last test
* Removing build script
* Adding ethcore-ipc-tests back
* Fixing grumbles
* Fixing blockchain tests (inference regression?)
2017-02-13 18:38:47 +03:00
GitLab Build Bot
a2c6cd8f7b
[ci skip] js-precompiled 20170213-125552
2017-02-13 13:00:14 +00:00
Nicolas Gotchac
b561ae7b12
Fixes to Token Deploy dapp ( #4513 )
...
* Renaming Basiccoin => Tokendeploy
* Rename Basiccoin => Tokendeploy
* UI and bug fixes to the TokenDeploy dapp
* Use decimals for Token Deployment #4311
* Typo
* PR Gumbles
2017-02-13 13:47:11 +01:00
Arkadiy Paronyan
1fa830d19b
Fixed receipt decoding ( #4521 )
2017-02-13 12:14:05 +03:00
Denis S. Soldatov aka General-Beck
5f154b9f4b
update Dockerfile
...
add libudev-dev
2017-02-11 20:48:45 +04:00
GitLab Build Bot
88b91b7e13
[ci skip] js-precompiled 20170210-173450
2017-02-10 17:39:23 +00:00
Nicolas Gotchac
ace5c27211
Several fixes to the Wallet in general ( #4504 )
...
* Fix address non-ellipsis on Wallet view
* Add warning if daily limit has been reached
* Add OOG warnings to TxHash
* Fixes to the Warning
* Added stringified version of the changes
* Add wallet link for notifications
* Fix tests
* Use Formatted Messages
* React Intl
* s/ui.walletSettings/walletSettings in React Intl
2017-02-10 18:27:18 +01:00
Nicolas Gotchac
da2e28dad1
Use the current contract name for Solidity compilation ( #4510 )
2017-02-10 18:26:52 +01:00
Robert Habermeier
c7d83bd88a
Merge branch 'master' into light-txq
2017-02-10 17:21:38 +01:00
Robert Habermeier
48ae38eaf9
Merge pull request #4485 from ethcore/lightrpc
...
Preparation for Light client RPC
2017-02-10 17:15:03 +01:00
GitLab Build Bot
51f74f8d80
[ci skip] js-precompiled 20170210-135944
2017-02-10 14:04:00 +00:00
Bas
325cd0ec0b
Fix Dutch translation ( #4509 )
...
After compiling + running the recently added Dutch translation I found it didn't work as I had forgotten to add nl to store.js. Now it is working.
2017-02-10 14:52:36 +01:00
Robert Habermeier
2c43b02e13
Merge branch 'lightrpc' into light-txq
2017-02-10 14:31:17 +01:00
Robert Habermeier
b8881215f1
Merge branch 'master' into lightrpc
2017-02-10 13:47:27 +01:00
Arkadiy Paronyan
8fd694ea47
Fixed a warning and bumbed libusb-sys ( #4507 )
2017-02-10 12:28:57 +01:00
GitLab Build Bot
d36303365f
[ci skip] js-precompiled 20170210-075200
2017-02-10 07:56:35 +00:00
Nicolas Gotchac
aebb289ea9
Fix overflow on small screens ( #4505 )
2017-02-10 08:43:59 +01:00
Robert Habermeier
6bf97de9d8
Merge branch 'master' into lightrpc
2017-02-10 02:44:12 +01:00
GitLab Build Bot
cb772acec7
[ci skip] js-precompiled 20170210-001706
2017-02-10 00:22:18 +00:00
Nicolas Gotchac
515f30eea9
Fix no data sent in TxQueue dapp ( #4502 )
...
* Fix wrong PropType req for Embedded Signer
* Fix wrong data for tx #4499
2017-02-09 19:07:35 -05:00
Arkadiy Paronyan
a7e6d8727a
Ledger wallet support ( #4486 )
...
* Ledger devices support
* structs for RPC types
2017-02-09 19:07:06 -05:00
Robert Habermeier
5e65081d4f
remove accidental gap in next nonce
2017-02-09 22:37:56 +01:00
Robert Habermeier
e53d023a8a
implement light dispatcher
2017-02-09 21:12:28 +01:00
Robert Habermeier
53774d4792
Merge branch 'lightrpc' into light-txq
2017-02-09 20:41:42 +01:00
Robert Habermeier
0d09a473a7
remove let inner pattern with take_weakf and try_bf
2017-02-09 20:38:47 +01:00
Robert Habermeier
7be2c145de
LightDispatcher definition
2017-02-09 20:22:31 +01:00
Robert Habermeier
325c6aaf6a
verify raw transactions against Engine
2017-02-09 19:58:29 +01:00
Robert Habermeier
a559dfe9a1
implement send_raw_transaction
2017-02-09 19:17:37 +01:00
Robert Habermeier
baf0dbc6bf
LightProvider struct using light transaction queue
2017-02-09 18:42:18 +01:00
Robert Habermeier
6a924770be
add several tests + minor bugfixes
2017-02-09 18:10:59 +01:00
GitLab Build Bot
395a44e4a8
[ci skip] js-precompiled 20170209-165020
2017-02-09 16:54:35 +00:00
Nicolas Gotchac
71f84067d9
Add new Componennt for Token Images ( #4496 ) ( #4498 )
2017-02-09 17:41:27 +01:00
Nicolas Gotchac
48eac51c8a
Fix address and accounts links ( #4491 )
...
* Add proper links to TxRows (#4314 )
* Add proper link to the Signer (#4314 )
* Fix and add tests
2017-02-09 17:41:17 +01:00
Nicolas Gotchac
867a593988
Fix Token Reg Dapp issues in Firefox ( #4489 )
...
* Fix overflow issues in Firefox (#4348 )
* Fix wrong Promise inferance
* Add new Componennt for Token Images (#4496 )
* Revert "Add new Componennt for Token Images (#4496 )"
This reverts commit 6ffbdab891f85e4d988e3e8e96fc2c651bd68e04.
2017-02-09 17:41:01 +01:00
Robert Habermeier
33266f78d1
initial transaction queue implementation
2017-02-09 17:36:12 +01:00
GitLab Build Bot
2043123db0
[ci skip] js-precompiled 20170209-161356
2017-02-09 16:17:57 +00:00
Jaco Greeff
7a627f88cb
parity.js interfaces for vaults ( #4497 )
2017-02-09 11:07:08 -05:00
GitLab Build Bot
c69f515597
[ci skip] js-precompiled 20170209-155632
2017-02-09 16:02:22 +00:00
Bas
8f6108fdc9
Initial Dutch translations ( #4484 )
...
* Create settings.js
* Create index.js
* Update constants.js
* Update languages.js
2017-02-09 10:48:36 -05:00
Svyatoslav Nikolsky
1534bbb7cb
Fix key.meta.vault for root dir keys && read vault.meta without vault key ( #4482 )
...
* fix vault for root && read vault meta without key
* support for old vaults (wthout meta field)
2017-02-09 10:47:22 -05:00
Nikolay Volf
fea76c07f0
Arbitrary labels for extended keys (u32, H256 built-in) ( #4438 )
...
* extend derivatino to arbitrary labels
* fix review
* fix more obsolete comments
* hard test for h256
* fix using only 4 bytes from hash
2017-02-09 10:44:28 -05:00
Arkadiy Paronyan
3da3e8453b
Fixing ethstore build ( #4492 )
2017-02-09 10:42:49 -05:00
Svyatoslav Nikolsky
f35517e213
fixed compilation ( #4493 )
2017-02-09 15:41:58 +01:00
GitLab Build Bot
1e47133b3f
[ci skip] js-precompiled 20170209-143704
2017-02-09 14:41:10 +00:00
Nicolas Gotchac
e8175f4cca
Build embedded Parity JS properly and separatly ( #4426 )
...
* Add a specific embed webpack build // output assets in JSON
* WIP Embed
* Updated Webpack
* Update exports // Webpack config
* Fix app build fail
* Fix NPm scripts
* Reduce Embed dependencies
* Fix NPM exports
* remvoe stats
* Lazy-Load worker (not to load in embed)
* PR Grumbles + Fix tests
2017-02-09 15:30:57 +01:00
Robert Habermeier
c83d27420c
address grumbles
2017-02-09 15:10:14 +01:00
Robert Habermeier
bce6bf92d9
simplify code
2017-02-09 15:01:15 +01:00
Robert Habermeier
bcf0e23a4b
take_weakf
2017-02-09 13:24:03 +01:00
Robert Habermeier
656c08976f
Merge pull request #4487 from ethcore/snappy-static
...
Static link for snappy
2017-02-09 00:56:59 +01:00
arkpar
cdc09a6d8a
Static link for snappy
2017-02-08 22:43:23 +01:00
Robert Habermeier
869d193d21
Merge branch 'lightrpc' into light-txq
2017-02-08 20:51:11 +01:00
Robert Habermeier
49f49194c5
use Dispatcher when starting RPCs
2017-02-08 20:44:40 +01:00
Robert Habermeier
028dbe5fe2
rename get_header to block_header by convention
2017-02-08 20:22:41 +01:00
Robert Habermeier
b3440babe3
light txq skeleton
2017-02-08 19:21:12 +01:00
Robert Habermeier
0246d5c734
Merge branch 'master' into lightrpc
2017-02-08 19:20:35 +01:00
Robert Habermeier
dd9e3f21ad
silence errors temporarily
2017-02-08 19:09:52 +01:00
Denis S. Soldatov aka General-Beck
8773889532
downgrade rust (windows build)
2017-02-08 22:06:09 +04:00
Robert Habermeier
3669d17390
fix tests with loop hack
2017-02-08 17:57:18 +01:00
Robert Habermeier
2ca61151ac
squash some warnings
2017-02-08 16:59:04 +01:00
Robert Habermeier
5223e25aa6
use generic dispatcher everywhere, squash errors
2017-02-08 16:55:06 +01:00
Robert Habermeier
e73ea80954
dispatcher abstraction, port most things to it
2017-02-08 15:36:53 +01:00
GitLab Build Bot
68b8724440
[ci skip] js-precompiled 20170208-134350
2017-02-08 13:49:08 +00:00
Jaco Greeff
0b3f97f792
Work with string numbers in contract ( Fixes #4472 ) ( #4478 )
2017-02-08 08:38:27 -05:00
Svyatoslav Nikolsky
a92bf65181
parity_getVaultMeta && parity_setVaultMeta ( #4475 )
2017-02-08 07:53:39 -05:00
keorn
b0248cad0b
sort corpus when hitting genesis ( #4470 )
2017-02-08 08:55:56 +01:00
Tomasz Drwięga
5fe993f658
Fixing CORS headers for parity.web3.site ( #4461 )
2017-02-07 18:11:42 -05:00
Robert Habermeier
4bb45c4f64
use new error-less on_demand
2017-02-07 23:25:17 +01:00
Arkadiy Paronyan
0e8b96a268
Update Dockerfile
2017-02-07 22:15:01 +01:00
Arkadiy Paronyan
b171076215
Update Dockerfile
2017-02-07 22:14:34 +01:00
Arkadiy Paronyan
86dbd50957
Update README.md
2017-02-07 22:13:52 +01:00
Gav Wood
810ec3558a
Make signing compatible with geth. ( #4468 )
2017-02-07 22:09:59 +01:00
GitLab Build Bot
428e8361ce
[ci skip] js-precompiled 20170207-191009
2017-02-07 19:16:17 +00:00
Jaco Greeff
2411e674eb
Fixing histogram again ( #4464 ) ( #4467 )
2017-02-07 19:55:58 +01:00
Jaco Greeff
7bca4aa24f
Handle registry not found errors ( Fixes #4463 ) ( #4465 )
2017-02-07 19:42:21 +01:00
Robert Habermeier
1fa5b07321
Merge branch 'master' into lightrpc
2017-02-07 17:13:18 +01:00
Robert Habermeier
6c06a1a5ec
expunge error types from OnDemand
2017-02-07 17:06:22 +01:00
Robert Habermeier
04fe72face
reassign requests indefinitely
2017-02-07 16:49:14 +01:00
Robert Habermeier
b37124991c
enforce validity of on_demand requests
2017-02-07 16:13:56 +01:00
Robert Habermeier
9524ebbff1
on-demand contract code request
2017-02-07 15:29:38 +01:00
Robert Habermeier
d253a9c864
uncle and tx count RPCs
2017-02-07 14:45:48 +01:00
GitLab Build Bot
d341b49bad
[ci skip] js-precompiled 20170207-120734
2017-02-07 12:11:54 +00:00
Jaco Greeff
83cf5fc068
Fix Portal scrolling getting stuck ( #4455 )
...
* Fix Portal scrolling getting stuck
* DappCard container flex
* Container height to 100%
2017-02-07 13:02:19 +01:00
GitLab Build Bot
1d774835de
[ci skip] js-precompiled 20170207-075234
2017-02-07 07:56:44 +00:00
Jaco Greeff
66df4f6410
Fix AccountCard stretch to 100% ( #4450 )
2017-02-07 08:46:17 +01:00
Robert Habermeier
66692bc0e2
fast paths for block and receipts on_demand
2017-02-06 18:28:13 +01:00
Robert Habermeier
4172a5369c
Include total difficulty in CHTs and hide implementation details from consumers ( #4428 )
...
* CHT builder and prover
* use CHT abstraction in provider
* hide CHT internals from header chain
* fix itertools conflict by updating all to 0.5
* cht proof checker, use it in on_demand
2017-02-06 17:21:35 +01:00
Robert Habermeier
b32cb7a97d
make total difficulty field optional
2017-02-06 15:28:16 +01:00
Maciej Hirsz
127baed385
Merge pull request #4362 from ethcore/mh-tendermintrlpfix
...
Fix RLP encoding for types recursively calling `RlpStream::append`
2017-02-06 11:13:40 +01:00
GitLab Build Bot
d7e87dbe19
[ci skip] js-precompiled 20170206-083224
2017-02-06 08:36:28 +00:00
Tomasz Drwięga
4ac91b3284
Open popup without attempting inline ( #4440 )
...
* Open popup without attempting inline
* Cater for all .web3.site addresses
2017-02-06 09:26:11 +01:00
Svyatoslav Nikolsky
2f340a547a
Vaults RPCs ( #4366 )
...
* vaults RPCs
* vault.password != vault_account.password
* moved vault RPCs to parityAccounts NS
* parity_listVaults + parity_listOpenedVaults
2017-02-05 10:17:56 -05:00
Nikolay Volf
e257e4e3bd
Ethkey - extended keys ( #4377 )
...
* data structures initial
* hard derivation
* tabs, docs
* more docs
* soft private derivation
* public derivation
* finalize api, fix warnings
* use simple new()
* keypair api
* bump byteorder
* doc tweaks
* remove heavyness from tests
* added test vector infrastructure and examples
* initialization from seed to key pair
* add comment about panic
2017-02-05 10:17:03 -05:00
Robert Habermeier
def47b4042
make light module public
2017-02-05 15:22:15 +01:00
GitLab Build Bot
f646ffbe61
[ci skip] js-precompiled 20170205-101133
2017-02-05 10:15:32 +00:00
Sebastian Kippe
bcd3cd8467
Use secure websocket from HTTPS clients ( #4436 )
...
Currently, the unsecure `ws://` scheme is hardcoded. With this change,
the scheme will dynamically change to the secure `wss://` when the
frontend is requested from an HTTPS origin.
2017-02-05 11:04:17 +01:00
Denis S. Soldatov aka General-Beck
4fa1717a99
Update Dockerfile
...
remove --verbose from hub build
2017-02-05 02:56:19 +04:00
Denis S. Soldatov aka General-Beck
c5cc5e30ec
Update Dockerfile
...
fix build for docker hub
[ci skip]
2017-02-05 02:39:22 +04:00
Robert Habermeier
7c9064c856
Merge branch 'master' into lightrpc
2017-02-04 22:30:20 +01:00
Robert Habermeier
1e123f1b4d
handle TD info in RPC layer
2017-02-04 22:22:57 +01:00
Tomasz Drwięga
248cd5e036
RPC middleware: Informant & Client.keep_alive ( #4384 )
...
* Adding RPC informant structs
* RPC informant
* Middleware counting RPC requests
* Moving client keep_alive to middleware
2017-02-04 22:18:19 +01:00
Robert Habermeier
3a7248b964
cht proof checker, use it in on_demand
2017-02-04 17:48:02 +01:00
Robert Habermeier
197695414e
correct ready transaction condition
2017-02-04 17:19:39 +01:00
Robert Habermeier
484b93abdc
Merge branch 'cht-td' into lightrpc
2017-02-04 17:14:47 +01:00
Robert Habermeier
ca11138ce8
fix itertools conflict by updating all to 0.5
2017-02-04 17:07:39 +01:00
GitLab Build Bot
d7b937fe88
[ci skip] js-precompiled 20170204-152807
2017-02-04 15:32:05 +00:00
Gav Wood
4553f517ce
Fix eth_sign/parity_postSign ( #4432 )
...
* Fix dispatch for signing.
* Remove console log
* Fix signing & tests.
2017-02-04 16:00:28 +01:00
Jaco Greeff
b4c24d5ab3
Web view with web3.site support ( #4313 )
...
* Web-domain based routing
* Support base32-encoded urls
* Proper support for non-domain based routing
* Handling long domain names
* Switching to web3.site
* Encoding for *.web3.site urls
* Add DappUrlInput component
* Update Web views with store
* Update spec description
* Update spec description
* edited url does not allow in-place store edits
* Fixing dapps access on 127.0.0.1:8180
* Use /web/<hash> urls for iframe
* Redirecting to parity.web3.site
* Disabling the redirection
2017-02-04 09:52:14 +01:00
GitLab Build Bot
c9d38cac6e
[ci skip] js-precompiled 20170203-221154
2017-02-03 22:18:13 +00:00
Jaco Greeff
c7f5ee481d
Extend Portal component with title, buttons & steps (as per Modal) ( #4392 )
...
* Allow Portal to take title & buttons props
* Fix tests
* Portal consistent in screen center
* Allow hiding of Close (e.g. FirstRun usage)
* Set overflow style on body based on open
* Don't lock scroll for child popups (overlaps)
* Override buttons to be white
* Expose ~/ui/Modal/Title as re-usable component
* Use ~/ui/Title to render the Title
* Update tests
* Added a portal example with buttons and steps
* Address PR comments
* Fix AddressSelect with new container withing container
* Move legend to "buttons"
* AddressSelect extra padding
2017-02-03 22:44:43 +01:00
GitLab Build Bot
a68ca7444e
[ci skip] js-precompiled 20170203-191721
2017-02-03 19:22:26 +00:00
GitLab Build Bot
a39324632d
[ci skip] js-precompiled 20170203-190642
2017-02-03 19:12:35 +00:00
Jaco Greeff
f48d8b0ef6
Extension installation overlay ( #4423 )
...
* Extension installation overlay
* Pr gumbles
* Spelling
* Update Chrome URL
2017-02-03 20:01:49 +01:00
Jaco Greeff
cd4d489b57
Add block & timestamp conditions to Signer ( #4411 )
...
* WIP
* WIP (with lint)
* Update ui/RadioButtons
* transaction.condition
* Date & Time selection in-place
* Swap to condition-only
* Fix tests, align naming
* Pick error properly from validation
* Update tests
* condition: time sent withough ms
* Format numbers as base-10
* override popup styles (zIndex)
* Pass condition to signer
* Update expectation (failing test typo)
* Adjust min/max height for expanded bar
* Fix address display
* Fix name display
* Number inputs for gas/gasPrice/blockNumber
* Default blockNumber to 1 (align with min setting)
* Update tests with min value
* Add Block Number
* Fix failing tests (after blockNumber intro)
2017-02-03 20:01:09 +01:00
Robert Habermeier
02142e3a57
Merge branch 'master' into cht-td
2017-02-03 19:56:52 +01:00
Robert Habermeier
e874df5155
hide CHT internals from header chain
2017-02-03 19:50:23 +01:00
Arkadiy Paronyan
312aa72747
Transaction timestamp condition ( #4419 )
...
* Transaction timestamp condtiion
* Updated docs
* Updated docs
* Check agains last block timestamp
2017-02-03 19:32:10 +01:00
Robert Habermeier
1baa824d1e
use CHT abstraction in provider
2017-02-03 18:47:03 +01:00
Robert Habermeier
fc8e9e39ec
CHT builder and prover
2017-02-03 18:38:28 +01:00
Robert Habermeier
e460421deb
generic basic account fetcher, nonce RPC
2017-02-03 17:53:48 +01:00
Robert Habermeier
024e69138a
get it compiling
2017-02-03 17:41:25 +01:00
Robert Habermeier
9328067eac
start eth RPC API for light client
2017-02-03 16:20:43 +01:00
Robert Habermeier
1dc957e3a5
allow genesis block to be latest
2017-02-03 16:11:09 +01:00
Robert Habermeier
83de16da88
use encoded::Header in HeaderChain
2017-02-03 15:32:22 +01:00
GitLab Build Bot
85e9091b29
[ci skip] js-precompiled 20170203-133154
2017-02-03 13:36:20 +00:00
Jaco Greeff
f48a2df6e5
Poll for defaultAccount to update dapp & overlay subscriptions ( #4417 )
...
* Poll for defaultAccount (Fixes #4413 )
* Fix nextTimeout on catch
* Store timers
* Re-enable default updates on change detection
2017-02-03 14:24:23 +01:00
GitLab Build Bot
d1728cca28
[ci skip] js-precompiled 20170203-131026
2017-02-03 13:16:08 +00:00
Tomasz Drwięga
853aae2b92
Validate dapps accounts with address book ( #4407 )
...
* Parametrize address book
* Improving types in account_provider
* Filtering dapps_accounts
* Fixing RPC tests
2017-02-03 13:56:47 +01:00
Jaco Greeff
acf41d6f27
Dapps use defaultAccount instead of own selectors ( #4386 )
...
* Remove account selection from GitHubHint
* Fix naming
* Update to match BasicCoin
* BasicCoin defaultAddress
* typo
* method registry without selector
* Update after manual tests
* IdentityIcon for localtx
* Fix non-secure personal subscriptions
* Query defaultAccount for non-secure apps on send
2017-02-03 13:54:53 +01:00
Denis S. Soldatov aka General-Beck
3af45c6ad9
update depends
...
Depends: libssl1.0.0 (>=1.0.0)
[ci skip]
2017-02-03 14:47:29 +04:00
Denis S. Soldatov aka General-Beck
0bf9f6c444
change depends
...
libssl (>=1.0.0)
[ci skip]
2017-02-03 13:17:10 +04:00
keorn
76c39e3e66
Fix lock and rename tracing ( #4403 )
...
* tracing, timeouts
* remove env_logger
2017-02-02 19:11:43 +01:00
Tomasz Drwięga
015425d447
Restarting fetch client every now and then ( #4399 )
2017-02-02 19:11:28 +01:00
GitLab Build Bot
4961422523
[ci skip] js-precompiled 20170202-163010
2017-02-02 16:33:24 +00:00
Maciej Hirsz
1b1d3a297c
Perform a sync between Rust and JS when generating markdown instead of in spec tests ( #4408 )
...
* Sync RPC on npm run build:markdown
* Helpers
* Added GPL headers
2017-02-02 17:24:15 +01:00
Jannis Redmann
d5aa139e46
registry dapp: make lookup use lower case ( #4409 )
2017-02-02 17:23:58 +01:00
Robert Habermeier
3b9ac7648c
with_context on LightSync
2017-02-02 17:02:46 +01:00
GitLab Build Bot
a0ffb3df20
[ci skip] js-precompiled 20170202-150718
2017-02-02 15:11:11 +00:00
Jaco Greeff
535ebb1f2f
Available Dapp selection alignment with Permissions (Portal) ( #4374 )
...
* Manage default accounts
* Portal
* Portal
* Allow Portal to be used in as both top-level and popover
* modal/popover variable naming
* Move to Portal
* export Portal in ~/ui
* WIP
* Tags handle empty values
* Export AccountCard in ~/ui
* Allow ETH-only & zero display
* Use ui/Balance for balance display
* Add tests for Balance & Tags component availability
* WIP
* Default overlay display to block (not flex)
* Revert block
* WIP
* Add className, optional handlers only
* WIP
* Properly handle optional onKeyDown
* Selection updated
* Align margins
* Remove old code
* Remove debug logging
* TransitionGroup for animations
* No anim
* Cleanups
* Revert addons removal
* Fix tests
* WIP
* Add onClick to Container
* Create ui/DappCard component
* WIP
* Pass dummy displayApps
* Rename DappsVisible back to AddDapps (easier git diff)
* Rename CSS
* Fix tests after merge
2017-02-02 16:02:45 +01:00
Jannis Redmann
1547af191b
more permissive verification process ( #4317 )
...
* style fixes ✨
* verification: find last request
* verification: don't request again if same input
* didRequestWithSameValues -> shallRequestAgain
* bugfixes 🐛 , update SMS verification ABI
* verification: hasRequested -> accountHasRequested
* verification: hasIsVerified -> accountIsVerified
* verification: shallRequestAgain -> shallSkipRequest
* verification: show if unable to send req
* email verification: check if email already used
* address style grumbles 🎨
2017-02-02 16:01:37 +01:00
Robert Habermeier
fd44dcda15
rename LES protocol ID
2017-02-02 15:22:38 +01:00
GitLab Build Bot
8e82b2f631
[ci skip] js-precompiled 20170202-125420
2017-02-02 12:57:45 +00:00
Jaco Greeff
12bd207e53
Fix ParityBar account selection overflows ( #4405 )
2017-02-02 13:30:36 +01:00
arkpar
2b26f0cc28
Fixing yaml script
2017-02-02 13:24:44 +01:00
Arkadiy Paronyan
5817acb582
Mac binaries signing ( #4397 )
2017-02-02 11:55:20 +01:00
Denis S. Soldatov aka General-Beck
0a28b167a2
Merge pull request #4398 from ethcore/revert-4381-js-ci-skip
...
Revert "remove [ci skip]"
2017-02-02 13:47:17 +04:00
Denis S. Soldatov aka General-Beck
bc704283a4
Revert "remove [ci skip]"
2017-02-02 13:35:34 +04:00
GitLab Build Bot
3d4545fa91
js-precompiled 20170201-231534
2017-02-01 23:19:04 +00:00
GitLab Build Bot
85f75d39b3
js-precompiled 20170201-225215
2017-02-01 22:55:51 +00:00
GitLab Build Bot
52f40042b0
js-precompiled 20170201-222816
2017-02-01 22:31:43 +00:00
GitLab Build Bot
b8c0d657b4
js-precompiled 20170201-220650
2017-02-01 22:10:13 +00:00
GitLab Build Bot
ffb5ddc08b
js-precompiled 20170201-214512
2017-02-01 21:48:38 +00:00
GitLab Build Bot
35e267c4fe
js-precompiled 20170201-212208
2017-02-01 21:25:32 +00:00
GitLab Build Bot
43baa461b0
js-precompiled 20170201-205737
2017-02-01 21:01:07 +00:00
GitLab Build Bot
7fae67785c
js-precompiled 20170201-203408
2017-02-01 20:37:33 +00:00
GitLab Build Bot
09e933a450
js-precompiled 20170201-200611
2017-02-01 20:09:34 +00:00
GitLab Build Bot
71190f6068
js-precompiled 20170201-194205
2017-02-01 19:45:25 +00:00
Jaco Greeff
bd0891c93c
Typo, fixes #4271 ( #4391 )
2017-02-01 20:36:05 +01:00
GitLab Build Bot
2f299d20e8
js-precompiled 20170201-185153
2017-02-01 18:55:16 +00:00
GitLab Build Bot
bc73416e45
js-precompiled 20170201-182335
2017-02-01 18:27:32 +00:00
GitLab Build Bot
22f0d648c7
js-precompiled 20170201-174728
2017-02-01 17:50:56 +00:00
GitLab Build Bot
6b77d10cac
js-precompiled 20170201-172305
2017-02-01 17:26:30 +00:00
GitLab Build Bot
12c1434f09
js-precompiled 20170201-165339
2017-02-01 16:58:21 +00:00
GitLab Build Bot
653bb112bf
js-precompiled 20170201-162404
2017-02-01 16:27:37 +00:00
Tomasz Drwięga
4462c18690
Fixing invalid address in docs ( #4388 )
2017-02-01 17:14:16 +01:00
arkpar
dbafbc29be
Killed travis and appveyor
2017-02-01 17:06:44 +01:00
Denis S. Soldatov aka General-Beck
1a8ce3e1f3
Merge pull request #4381 from ethcore/js-ci-skip
...
remove [ci skip]
2017-02-01 19:59:26 +04:00
GitLab Build Bot
8e35b2c39a
[ci skip] js-precompiled 20170201-152542
2017-02-01 15:29:43 +00:00
Tomasz Drwięga
fb7c6c2867
Fixing estimate gas in case histogram is not available ( #4387 )
2017-02-01 16:18:22 +01:00
Jaco Greeff
3bdd32f9ec
Default Account selector in Signer overlay ( #4375 )
...
* Manage default accounts
* Portal
* Portal
* Allow Portal to be used in as both top-level and popover
* modal/popover variable naming
* Move to Portal
* export Portal in ~/ui
* WIP
* Tags handle empty values
* Export AccountCard in ~/ui
* Allow ETH-only & zero display
* Use ui/Balance for balance display
* Add tests for Balance & Tags component availability
* WIP
* Default overlay display to block (not flex)
* Revert block
* WIP
* Add className, optional handlers only
* WIP
* Properly handle optional onKeyDown
* Selection updated
* Align margins
* Remove old code
* Remove debug logging
* TransitionGroup for animations
* No anim
* Cleanups
* Revert addons removal
* Fix tests
* defaultAccount
* Selection actually selects
* WIP tests
* tests WIP
* Expand tests
* Container for scrollbars
* Add parity_defaultAccount RPC (with subscription)
* Add jsonrpc interface
2017-02-01 16:18:11 +01:00
GitLab Build Bot
a414729de9
[ci skip] js-precompiled 20170201-142626
2017-02-01 14:29:49 +00:00
Tomasz Drwięga
5526a3a228
Fixing web3 in console ( #4382 )
2017-02-01 15:19:23 +01:00
GitLab Build Bot
f4a761edb7
[ci skip] js-precompiled 20170201-140028
2017-02-01 14:05:19 +00:00
Jaco Greeff
04fb2afba1
Add parity_defaultAccount RPC (with subscription) ( #4383 )
...
* Add parity_defaultAccount RPC (with subscription)
* Add jsonrpc interface
2017-02-01 14:52:15 +01:00
Denis S. Soldatov aka General-Beck
0a7aef1872
remove [ci skip]
...
remove tag [ci skip] for `js-precompiled`
2017-02-01 15:09:13 +04:00
Maciej Hirsz
ed09a76c91
Full JSON-RPC docs + sync tests. ( #4335 )
...
* Extended Markdown generator
* Synced and extended all JSON-RPC interfaces
* Fix linter errors
* Format `parity_listAccounts` output in API
* typo
* Check if interfaces are synced in JS spec tests
* Fixing missing interface errors
* Better #[rpc] attribute parsing
* Fixed RPC JS spec tests
* More examples
* Refactored how dummy data appears in examples
* Complete trace docs!
* fix typo
* Less copy-paste
* All the docs!
* Fix differences between CallRequest and TransactionRequest
* Fix differences between CallRequest and TransactionRequest
* Missing examples
* Grumble fixes
2017-02-01 10:58:09 +01:00
maciejhirsz
687ae4d7fa
Removed fixed TODO
2017-02-01 10:38:01 +01:00
Denis S. Soldatov aka General-Beck
b2ecf1c5a4
Update gitlab-ci.yml
...
try to add `nightly` tag
2017-01-31 20:39:11 +04:00
GitLab Build Bot
867ca0f96c
[ci skip] js-precompiled 20170131-163220
2017-01-31 16:35:42 +00:00
Jannis Redmann
5217469e85
expose util as Api.util ( #4372 )
2017-01-31 17:25:42 +01:00
GitLab Build Bot
f1995b3fb0
[ci skip] js-precompiled 20170131-161018
2017-01-31 16:13:39 +00:00
Jaco Greeff
a935a04449
Dapp Account Selection & Defaults ( #4355 )
...
* Manage default accounts
* Portal
* Portal
* Allow Portal to be used in as both top-level and popover
* modal/popover variable naming
* Move to Portal
* export Portal in ~/ui
* WIP
* Tags handle empty values
* Export AccountCard in ~/ui
* Allow ETH-only & zero display
* Use ui/Balance for balance display
* Add tests for Balance & Tags component availability
* WIP
* Default overlay display to block (not flex)
* Revert block
* WIP
* Add className, optional handlers only
* WIP
* Properly handle optional onKeyDown
* Selection updated
* Align margins
* Remove old code
* Remove debug logging
* TransitionGroup for animations
* No anim
* Cleanups
* Revert addons removal
* Fix tests
* Pr gumbles
2017-01-31 17:04:41 +01:00
GitLab Build Bot
12aadc3e2a
[ci skip] js-precompiled 20170131-155752
2017-01-31 16:01:16 +00:00
Jaco Greeff
d3ee15c6fb
Publish @parity/jsonrpc ( #4365 )
...
* Add npm/jsonrpc
* Allow ci:build:jsonrpc
* Publish @parity/jsonrpc
2017-01-31 16:52:48 +01:00
GitLab Build Bot
983a0e3d0b
[ci skip] js-precompiled 20170131-132131
2017-01-31 13:24:45 +00:00
Gav Wood
75ecabbd28
Fix signing ( #4363 )
...
* Fix signing.
* Fix linting.
* Fix linting.
* Address grumble.
2017-01-31 14:15:08 +01:00
GitLab Build Bot
27d00f6eca
[ci skip] js-precompiled 20170131-113939
2017-01-31 11:42:56 +00:00
Tomasz Drwięga
aaed67cfaf
Fixing embedded bar not closing in chrome extension ( #4367 )
2017-01-31 12:34:55 +01:00
GitLab Build Bot
b864d0f6ec
[ci skip] js-precompiled 20170131-112711
2017-01-31 11:30:36 +00:00
Jaco Greeff
223c474487
Update AccountCard for re-use ( #4350 )
...
* Tags handle empty values
* Export AccountCard in ~/ui
* Allow ETH-only & zero display
* Use ui/Balance for balance display
* Add tests for Balance & Tags component availability
* Add className, optional handlers only
* Remove debug logging
* AccountCard UI update
2017-01-31 12:21:50 +01:00
GitLab Build Bot
ee906467ad
[ci skip] js-precompiled 20170131-104521
2017-01-31 10:50:22 +00:00
Nicolas Gotchac
b3a23480de
Add proper event listener to Portal ( #4359 )
2017-01-31 11:38:53 +01:00
Tomasz Drwięga
9fb2be8f2b
Optional from field in Transaction Requests ( #4332 )
...
* Infering default account when sending transactions if not provided
* Fixing test
* Fixing tests code
* Fixes.
* More fixes.
* Final fix.
2017-01-30 21:08:36 +01:00
maciejhirsz
681fa10d4b
Tests checking item sizes for changed types
2017-01-30 20:01:32 +01:00
maciejhirsz
6795068ea4
Fixed other types
2017-01-30 19:13:35 +01:00
Nikolay Volf
4a404a6f33
Update README.md ( #4361 )
2017-01-30 18:47:12 +01:00
maciejhirsz
5fe54901e7
Fix Step encoding
2017-01-30 18:13:14 +01:00
Robert Habermeier
5b2b4717f6
fix earliest_era on empty db ( #4316 )
2017-01-30 17:20:41 +01:00
GitLab Build Bot
00c4c71176
[ci skip] js-precompiled 20170130-161417
2017-01-30 16:17:36 +00:00
Arkadiy Paronyan
43cc4ea13d
Fixed deadlock in external_url ( #4354 )
2017-01-30 17:08:21 +01:00
Jaco Greeff
15ffd9a09c
Allow Portal to be used as top-level modal ( #4338 )
...
* Portal
* Allow Portal to be used in as both top-level and popover
* modal/popover variable naming
* export Portal in ~/ui
* Properly handle optional onKeyDown
* Add simple Playground Example
2017-01-30 17:08:08 +01:00
GitLab Build Bot
4e7b8652c8
[ci skip] js-precompiled 20170130-142718
2017-01-30 14:30:42 +00:00
Gav Wood
ca196d683e
Fix postsign ( #4347 )
...
* Fix whitespace.
* Fix post sign.
* Fix message.
* Fix tests.
* Rest of the problems.
* All hail the linter and its omniscience.
* ...and its divine omniscience.
* Grumbles and wording.
2017-01-30 15:08:02 +01:00
GitLab Build Bot
5a18ed7c3e
[ci skip] js-precompiled 20170130-121240
2017-01-30 12:16:02 +00:00
Tomasz Drwięga
3fb445e198
Renaming signAndSendTransaction to sendTransaction ( #4351 )
2017-01-30 12:49:08 +01:00
GitLab Build Bot
f627bef08b
[ci skip] js-precompiled 20170130-110455
2017-01-30 11:08:16 +00:00
Jaco Greeff
c0468faf58
Add api.util.encodeMethodCall to parity.js ( #4330 )
...
* Add api.util.encodeMethodCall
* Update spec description path, strip hex
* Remove options, add encodeMethodCall(name, inputs) signature
* Simplify interface with types-only inputs
* Add abiEncode & abiDecode functions
2017-01-30 11:57:55 +01:00
Svyatoslav Nikolsky
9ac4d83ca3
Initial commit for vaults ( #4312 )
...
* initial commit for vaults
* fixed TODO
* public docs
* vault_file.json now contains enc(pwd hash)
* removed doc
2017-01-30 13:44:09 +03:00
Tomasz Drwięga
bf1e7ecfcb
Returning default account as coinbase + allow altering sender in signer ( #4323 )
...
* Returning first address as coinbase
* Allowing sender alteration in signer
* Adding default account RPC
2017-01-30 11:10:58 +01:00
Tomasz Drwięga
cf348dae60
Persistent tracking of dapps ( #4302 )
...
* Tests for RPC
* Extracting dapp_id from Origin and x-parity-origin
* Separate type for DappId
* Persistent tracking of recent dapps
* Fixing tests
* Exposing dapp timestamps
* Fixing import to work on stable
* Fixing test again
2017-01-30 10:59:46 +01:00
Tomasz Drwięga
47e1c5e2f1
Exposing all RPCs over dapps port as CLI option ( #4346 )
...
* Exposing all RPC over dapps port as CLI option
* Fix test.
2017-01-30 10:46:50 +01:00
Arkadiy Paronyan
089da2a24a
New macOS App ( #4345 )
2017-01-29 20:22:45 +01:00
GitLab Build Bot
b4dab67f83
[ci skip] js-precompiled 20170127-210258
2017-01-27 21:06:16 +00:00
Jaco Greeff
aef699ebf2
Display QrCode for accounts, addresses & contracts ( #4329 )
...
* Display QrCode for accounts, addresses & contracts
* Default size 4
* Fix layouts
2017-01-27 21:55:20 +01:00
GitLab Build Bot
5246d51a1a
[ci skip] js-precompiled 20170127-143849
2017-01-27 14:42:01 +00:00
Jaco Greeff
cb8fea3b5a
Add QrCode & Copy to ShapeShift ( #4322 )
...
* Extract CopyIcon to ~/ui/Icons
* Add copy & QrCode address
* Default size 4
* Add bitcoin: link
* use protocol links applicable to coin exchanged
* Remove .only
2017-01-27 15:33:02 +01:00
GitLab Build Bot
e81787da34
[ci skip] js-precompiled 20170127-134933
2017-01-27 13:53:09 +00:00
Jaco Greeff
076c8b9de7
parity.js api.parity.chainStatus should handle { blockGap: null } ( #4327 )
...
* Add tests for null blockGap values
* Handle null blockGap values
2017-01-27 14:42:22 +01:00
Jaco Greeff
1940809dd4
DeleteAccount & LoadContract modal updates ( #4320 )
...
* i18n & tests for DeleteAccount
* i18n & tests for LoadContract
2017-01-27 14:42:06 +01:00
Jaco Greeff
b51b7849dc
Split Tab from TabBar ( #4318 )
...
* Tab split (WIP)
* Split Tab component
2017-01-27 14:41:41 +01:00
GitLab Build Bot
da032e950f
[ci skip] js-precompiled 20170126-165810
2017-01-26 17:01:54 +00:00
Jaco Greeff
b74f2d8831
Contracts interface expansion ( #4307 )
...
* Add lookupMeta & tests
* Add getEntry & tests
* Formatting
* Remove unneeded .then(console.log)
2017-01-26 17:51:35 +01:00
GitLab Build Bot
f5a73ff4c8
[ci skip] js-precompiled 20170126-164625
2017-01-26 16:49:41 +00:00
Jaco Greeff
7f3b1bd31e
HistoryStore for tracking relevant routes ( #4305 )
...
* HistoryStore for tracking relevant routes
* Default route is still /accounts
* Fix copyright date-merge issue
2017-01-26 17:37:52 +01:00
GitLab Build Bot
3e2d95b272
[ci skip] js-precompiled 20170126-152421
2017-01-26 15:28:00 +00:00
Jaco Greeff
5ad50ab1e3
Split Dapp icon into ui/DappIcon ( #4308 )
2017-01-26 16:17:30 +01:00
Nicolas Gotchac
e19c28bb8e
Add a Playground for the UI Components ( #4301 )
...
* Playground // WIP
* Linting
* Add Examples with code
* CSS Linting
* Linting
* Add Connected Currency Symbol
* 2015-2017
* 2015-2017
* 2015-2017
* 2015-2017
* 2015-2017
* 2015-2017
* 2015-2017
* Added `renderSymbol` tests
* PR grumbles
* Add Eth and Btc QRCode examples
* 2015-2017
* Add tests for playground
* Fixing tests
2017-01-26 16:15:49 +01:00
Jaco Greeff
2ac7655355
Update CreateWallet with FormattedMessage ( #4298 )
...
* Allow FormattedMessage as hint & label
* tests for basic rendering
* convert component messages
* Typo
* id typos (insubstantial, but annoying)
* 2015-2017
* 2015-2017
* 2015-2017
* 2015-2017
* 2015-2017
2017-01-26 16:11:04 +01:00
Denis S. Soldatov aka General-Beck
82a7a17e6e
Update README.MD
...
Remove Travis CI badge
2017-01-26 19:06:48 +04:00
Denis S. Soldatov aka General-Beck
b5f46f3976
Update README.MD
...
Update Gitlab CI badge
2017-01-26 17:03:37 +04:00
GitLab Build Bot
79481b8ab5
[ci skip] js-precompiled 20170126-082319
2017-01-26 08:26:31 +00:00
Jaco Greeff
63e7379d5b
Update copyright dates ( #4306 )
2017-01-26 09:17:38 +01:00
Arkadiy Paronyan
c012dfc3ef
EIP-98: Optional transaction state root ( #4296 )
...
* EIP98: Optional receipt state root
* Use if-else
* Fixing tests
2017-01-25 20:22:48 +01:00
Denis S. Soldatov aka General-Beck
f5a4b55dae
Update gitlab-ci
...
Fix CI lint errors
2017-01-25 23:01:28 +04:00
Denis S. Soldatov aka General-Beck
c03be11303
Update gitlab-ci
...
[ci skip] Add `docker` build stage for automated build tagged images and push it to hub.docker.com
2017-01-25 22:48:36 +04:00
Denis S. Soldatov aka General-Beck
0fe6b40e68
Dockerfile for docker hub
...
[ci skip] automated build on docker hub. tags only
2017-01-25 22:25:52 +04:00
GitLab Build Bot
0c913b45b2
[ci skip] js-precompiled 20170125-181524
2017-01-25 18:18:28 +00:00
Gav Wood
8404edb656
Fix whitespace ( #4299 )
...
* Fix whitespace.
* Update copyright years/owner.
* Push release only for tags.
2017-01-25 18:51:41 +01:00
Denis S. Soldatov aka General-Beck
e672e6c5d6
Update gitlab-ci
...
[ci-skip] Remove `triggers` from stage `push-release`
2017-01-25 19:03:28 +04:00
GitLab Build Bot
33b02febed
[ci skip] js-precompiled 20170125-132524
2017-01-25 13:28:44 +00:00
Gav Wood
3125e2d2cc
Attempt to fix console. ( #4294 )
...
* Attempt to fix console.
* Fixing couple of possible exceptions
2017-01-25 14:10:35 +01:00
GitLab Build Bot
afa1edbeee
[ci skip] js-precompiled 20170125-112240
2017-01-25 11:25:48 +00:00
Jaco Greeff
380c0773d1
ui/SectionList component ( #4292 )
...
* array chunking utility
* add SectionList component
* Add TODOs to indicate possible future work
* Add missing overlay style (as used in dapps at present)
2017-01-25 12:16:04 +01:00
Nikolay Volf
1acc8031ce
Stratum up ( #4233 )
...
* flush work
* flush work
* flush work
* flush work
* generalized notifiers
* general setup with modules
* general setup with modules
* all binded
* catch up with master
* all dependencies injected
* stratum another up
* tcp update
* submitwork routine
* finalize & fix warnings
* merge bugs, review fixes
* merge bugs, review fixes
* new cli mess cleanup
* usage.txt swap
* flush work
* cli adopt
* compilation with new cli sorted
* subid space in json
* serialization issues
* grumbles addressed
* more grumbles
* remove last_work note for now
* fix compilation
* fix tests
* merge bugs
* no obliged ipc
* moving notifiers
* no optional feature now
* refactored again
* working on tests
* refactor to new tcp/ip
* stratum lib ok
* ethcore crate ok
* wip on tests
* final test working
* fix warnings, \n-terminated response
* new compatibility
* re-pushing work once anybody submitted
* various review and general fixes
* reviewe fixes
* remove redundant notifier
* one symbol -> huge bug
* ensure write lock isn't held when calling handlers
* extern declarations moved
* options to stratum mod, SocketAddr strongly-typed instantiation
* Minor style fix.
* Whitespace and phrasing
* Whitespace
2017-01-25 11:03:36 +01:00
Tomasz Drwięga
67284cc1a2
Logging transaction duration ( #4297 )
...
* Logging transaction duration
* Printing time also on heavy transactions [ci:skip]
2017-01-25 11:02:03 +01:00
GitLab Build Bot
5e18daf29e
[ci skip] js-precompiled 20170124-211147
2017-01-24 21:15:10 +00:00
keorn
e9251a9325
Generic engine utilities ( #4258 )
...
* move modules up
* make structs generic
* reound to view and tests
* fix
2017-01-24 22:03:03 +01:00
Maciej Hirsz
a58fad06a7
JSON-RPC interfaces with documentation ( #4276 )
...
* Extended Markdown generator
* Synced and extended all JSON-RPC interfaces
* Fix linter errors
* Format `parity_listAccounts` output in API
* typo
2017-01-24 22:02:52 +01:00
keorn
c460aec646
Dont decode seal fields ( #4263 )
...
* dont decode seal
* add get_block test
2017-01-24 21:57:29 +01:00
GitLab Build Bot
b0e7cd5c9d
[ci skip] js-precompiled 20170124-194135
2017-01-24 19:44:54 +00:00
Jaco Greeff
75c2588920
Skip misbehaving test until properly fixed ( #4283 )
2017-01-24 19:35:01 +00:00
Tomasz Drwięga
fa02b3ae54
Additional logs for own transactions ( #4278 )
2017-01-24 19:18:52 +00:00
Robert Habermeier
b739704902
ensure write lock isn't held when calling handlers ( #4285 )
2017-01-24 19:15:59 +00:00
Gav Wood
73b67da3cf
No need for geth compat by default.
2017-01-24 20:11:42 +01:00
GitLab Build Bot
7b7b552ed4
[ci skip] js-precompiled 20170124-162740
2017-01-24 16:30:59 +00:00
Jaco Greeff
155bbc328f
Feature selector ( #4074 )
...
* WIP
* ParityBar verification
* import from index.js
* i18n expansion & tests
* Features component
* Adapt language selector to use features
* Add features to settings view
* typo
* Convert logging
* Fix earlier merge issues resulting in test failures
* Lint failure fixes (new rules)
* Fix additional listing rules
* Re-add FormattedMessage (missing after merge), fix tests
* Fix loader overrides
* grumble: split item rendering (& test)
* grumble: allow enable/disable while testing (default on)
* grumble: move LanguageSelector below Features
* grumble: don't pass visiblity prop (& update tests)
* grumble: missing observable (onClick misbehaving)
* grumble: don't reset to defaults per session
* Fix to single store instance
2017-01-24 17:20:10 +01:00
GitLab Build Bot
5b2dd8deb2
[ci skip] js-precompiled 20170124-152454
2017-01-24 15:28:00 +00:00
Jaco Greeff
06433033d9
AccountCreate updates ( #3988 )
...
* Add esjify for mocha + ejs
* First pass through, intl + basic smoketests
* Create store
* Update for renames
* Pass store around
* createType into store
* Move stage into store
* Update labels
* Define stages
* address into store
* Add @observer
* Retrieve name from store
* Store phrase in store
* isWindowsPhrase into store
* gethAddresses to store
* Store manages geth addresses
* passwordHint into store
* Fix build
* rawKey into store
* import json files
* name set direct from component
* No parent change callbacks
* canCreate from store
* createAccounts into store
* expand create tests
* Windows phrase testcases
* Properly bind newError
* FirstRun use of new CreateAccount
* Add fix & test for selectedAddress match
* Call into store from props
* onChangeIdentity fix & test
* Phrase set fix & test
* RecoveryPhrase tested manually (issues addressed via tests)
* Hex import manual test (& tests added for errors)
* New eslint update fixes
* grumble: set default type from store (with test)
* grumble: pass copy of accounts (observable injection)
* grumble: Summary owners can be array or array-like
2017-01-24 16:18:23 +01:00
GitLab Build Bot
153f2ca2f2
[ci skip] js-precompiled 20170124-151134
2017-01-24 15:14:38 +00:00
Maciej Hirsz
a30a108ac9
Extended JS interface -> Markdown generator ( #4275 )
...
* Extended Markdown generator
* Fix linter errors
* Review fixes
2017-01-24 16:05:21 +01:00
Konstantin
9d0278e0f8
added 3 warpnodes for ropsten ( #4289 )
...
* added 3 warpnodes for ropsten
* Fixed indentation
2017-01-24 14:35:52 +01:00
GitLab Build Bot
7aafa8a7ec
[ci skip] js-precompiled 20170124-105551
2017-01-24 10:59:12 +00:00
Jaco Greeff
53bbc76d06
Ledger Communication toolkit ( #4268 )
2017-01-24 11:46:59 +01:00
keorn
ba0209678b
ValidatorSet reporting ( #4208 )
...
* remove register_account_provider
* build rpc module
* new dummy client
* common EngineSigner struct
* from -> into
* initial report via call
* separate safe from regular contract
* transact_contract
* fix build
* return Signature, docs
* add sign method to some engines
* add safeContract spec
* update specs to new contracts
* use AuthorityRound for contract spec
* add more reporting
* add reporting test
* use gas floor
* shorter
2017-01-24 12:03:58 +03:00
GitLab Build Bot
b6575cb230
[ci skip] js-precompiled 20170123-184530
2017-01-23 18:48:32 +00:00
Jaco Greeff
ea44555f44
Add parity_accountsInfo as available subscription ( #4273 )
2017-01-23 19:39:49 +01:00
GitLab Build Bot
1c6e9bc772
[ci skip] js-precompiled 20170123-164245
2017-01-23 16:47:50 +00:00
Jaco Greeff
183efe9d19
Display AccountCard name via IdentityName ( #4235 )
...
* Display AccountCard name via IdentityName
* Pass name through (catches registry reverse display)
2017-01-23 17:33:03 +01:00
GitLab Build Bot
f4149cc089
[ci skip] js-precompiled 20170123-160350
2017-01-23 16:06:59 +00:00
GitLab Build Bot
5fce415ac3
[ci skip] js-precompiled 20170123-155126
2017-01-23 15:54:58 +00:00
Jaco Greeff
3d1162e3d9
Dapp visibility save/load tests ( #4150 )
...
* Start of tests to replicate issue
* Expand visibility tests
* Cleanups
* typo
* Extend saving tests as requested (pre-emptive)
* tests for new setDisplayApps action
* Address PR oversights
2017-01-23 16:45:56 +01:00
GitLab Build Bot
512612424c
[ci skip] js-precompiled 20170123-153219
2017-01-23 15:35:49 +00:00
Nicolas Gotchac
b5a53284cf
Fix wrong output format of peers ( #4270 )
...
* Fix wrong output format of peers
* Add outPeer tests
2017-01-23 16:25:20 +01:00
keorn
b7f9b304c1
Chain scoring ( #4218 )
...
* chain scoring
* use current steps
2017-01-23 17:27:11 +03:00
Nikolay Volf
2034595652
Rust 1.14 for windows builds ( #4269 )
2017-01-23 15:13:02 +01:00
GitLab Build Bot
9994ca93f7
[ci skip] js-precompiled 20170123-124637
2017-01-23 12:49:32 +00:00
Jaco Greeff
66e540edf8
Eslint formatting updates ( #4234 )
...
* Eslint updated (newline-after-var)
* Fix newline-after-var
* Eslint updated (one-var-declaration-per-line)
* Fix one-var-declaration-per-line
* Fix additional errors
* Lint after merge
2017-01-23 13:39:52 +01:00
GitLab Build Bot
cff64233b4
[ci skip] js-precompiled 20170123-121125
2017-01-23 12:14:45 +00:00
Tomasz Drwięga
3e70e886a0
Embeddable ParityBar ( #4222 )
...
* Embeddable ParityBar
* Replacing storage with store
* Fixing references.
* Addressing style issues
* Supporting parity background
2017-01-23 13:04:08 +01:00
Lukas Maerdian
275fd5096c
Update deb-build.sh to fix libssl dependency ( #4260 )
2017-01-22 16:16:15 +01:00
Svyatoslav Nikolsky
092e24b9f2
Integration with zgp whitelist contract ( #4215 )
...
* zgp-transactions checker
* polishing
* rename + refactor
* refuse-service-transactions cl option
* fixed tests compilation
2017-01-22 16:15:22 +01:00
GitLab Build Bot
220084d77d
[ci skip] js-precompiled 20170121-134923
2017-01-21 13:53:01 +00:00
Nicolas Gotchac
6b52ed4dfa
Adjust the location of the signer snippet ( #4155 )
...
* Move signer tab
* WIP
* Better movments
* Save Parity Bar position per dapp
* Add position to Dapp Manifest
* Stick Parity Bar to the four corners
2017-01-21 14:44:13 +01:00
GitLab Build Bot
ebe9072836
[ci skip] js-precompiled 20170120-185430
2017-01-20 18:57:26 +00:00
Nicolas Gotchac
8edaab806e
Fix wrong token handling ( #4254 )
...
* Fixing wrong token displayed
* Linting
* Revert filtering out
* Revert the revert
2017-01-20 19:49:09 +01:00
GitLab Build Bot
6c5167ebb3
[ci skip] js-precompiled 20170120-184412
2017-01-20 18:47:09 +00:00
Jaco Greeff
e9e63a4a88
Additional building-block UI components ( #4239 )
...
* Currency WIP
* Expand tests
* Pass className
* Add QrCode
* Export new components in ~/ui
* s/this.props.netSymbol/netSymbol/
* Fix import case
2017-01-20 19:38:18 +01:00
GitLab Build Bot
9ea7ec0252
[ci skip] js-precompiled 20170120-153650
2017-01-20 15:39:49 +00:00
Jaco Greeff
ca2983b407
Bump package.json to 0.3.0 (1.6 track) ( #4244 )
2017-01-20 16:31:03 +01:00
GitLab Build Bot
888ce1ca3d
[ci skip] js-precompiled 20170120-145411
2017-01-20 14:57:00 +00:00
Jaco Greeff
29e91f80d1
Disable notifications ( #4243 )
2017-01-20 15:48:14 +01:00
Robert Habermeier
203fd8a471
Memory-based pruning history size ( #4114 )
...
* prune states based on memory param
* pruning memory CLI and usage in sync
* return purged value from memorydb
* calculate memory used incrementally in overlayrecentdb
* refactor shared history pruning code in client
* Fixed usage alignment
* journal_size function for fast memory calculation
2017-01-20 13:25:53 +01:00
keorn
97a60ceab1
Common EngineSigner ( #4189 )
...
* remove register_account_provider
* build rpc module
* new dummy client
* common EngineSigner struct
* from -> into
* return Signature, docs
2017-01-20 13:25:17 +01:00
Jannis Redmann
1f77c4301a
verification: don't request a code twice ( #4221 )
...
* verification: check if user has received code
* verification: don't request a code twice
* code style :lint:
2017-01-20 13:23:21 +01:00
Jaco Greeff
4e35fd215e
s/Delete Contract/Forget Contract/ ( #4237 )
2017-01-20 13:21:51 +01:00
Robert Habermeier
a791cb50a6
Light protocol syncing improvements ( #4212 )
...
* remove old lint silencer
* dispatch requests only to peers with higher TD
* dynamic target for sync rounds
* use round pivots instead of frames, fix test
* fix total difficulty calculation for test client
* fix broken reorg algorithm
* fork test, fix ancestor search
2017-01-20 12:41:59 +01:00
Robert Habermeier
3ff9324ec0
LES Peer Info ( #4195 )
...
* connected peers function for network service
* get LES peer info in sync API
* new peer info in RPC
2017-01-20 12:41:49 +01:00
Arkadiy Paronyan
35666f718b
Don't panic on uknown git commit hash ( #4231 )
2017-01-20 10:18:26 +01:00
GitLab Build Bot
685c630b4d
[ci skip] js-precompiled 20170120-091224
2017-01-20 09:15:30 +00:00
Jannis Redmann
df9110dd5e
cache registry reverses in local storage ( #4182 )
...
* cache reverses in localStorage
* bugfixes 🐛 , linting fixes 👕
* registry caching: store last block
* registry caching: store per chain
* localStorage -> store
* code style ✨
* code style 👕
2017-01-20 10:07:47 +01:00
Denis S. Soldatov aka General-Beck
f12bd17c20
update gitlab-ci
...
revert to 1337
[ci skip]
2017-01-20 02:28:04 +04:00
Denis S. Soldatov aka General-Beck
3e8d5dbe23
update gitlab-ci
...
comment to curl 1337
[ci skip]
2017-01-20 00:47:53 +04:00
Denis S. Soldatov aka General-Beck
71ed9f5fff
update gitlab-ci
...
fix build docker image in debian
[ci skip]
2017-01-20 00:33:27 +04:00
Denis S. Soldatov aka General-Beck
0e99e527bf
update gitlab-ci
...
add debian build win openssl 1.0.1
[ci skip]
2017-01-19 23:32:52 +04:00
Robert Habermeier
33680f5b82
Merge pull request #4223 from ethcore/rh-readme
...
update version numbers in README
2017-01-19 18:16:29 +01:00
Robert Habermeier
1be9f9eb1b
update version numbers in README
...
[ci skip]
2017-01-19 17:38:50 +01:00
Robert Habermeier
5830e03201
Merge pull request #4181 from ethcore/cht-full-nodes
...
CHT calculations for full nodes
2017-01-19 15:12:44 +01:00
Gav
42886fed5a
Dont push-release for beta/stable changes
2017-01-19 14:30:52 +01:00
GitLab Build Bot
6db17eb908
[ci skip] js-precompiled 20170119-131530
2017-01-19 13:19:21 +00:00
Jaco Greeff
e62cda36c7
Use single source of info for dapp meta (build & display) ( #4217 )
...
* Add skipBuild flag
* Only use builtin.json to specify location
* Re-remove dapps/index.js
2017-01-19 14:07:41 +01:00
GitLab Build Bot
ab073efbd9
[ci skip] js-precompiled 20170119-100631
2017-01-19 10:09:51 +00:00
Jaco Greeff
46081de886
Non-secure for DappReg ( #4216 )
2017-01-19 10:59:49 +01:00
GitLab Build Bot
a6365577e5
[ci skip] js-precompiled 20170119-093724
2017-01-19 09:41:00 +00:00
Gav Wood
0826bf75d1
Console now has admin ( #4220 )
...
Fixes #4210
2017-01-19 10:24:34 +01:00
GitLab Build Bot
f9509cc8b8
[ci skip] js-precompiled 20170119-075016
2017-01-19 07:53:32 +00:00
Jannis Redmann
b9031953e0
verification: add mainnet BadgeReg ids ( #4190 )
...
* verification: mainnet BadgeReg ids
* verification: fetch contracts by name
* verification: better wording
* typo
* reregistered badges
2017-01-19 08:45:32 +01:00
Tomasz Drwięga
24aec5191a
Fixing minimal transaction queue price ( #4204 )
...
* Fixing minimal transaction queue price
* Fixing tests
2017-01-18 19:44:24 +01:00
keorn
73b80869f5
Remove unnecessary Engine method ( #4184 )
...
* remove register_account_provider
* build rpc module
* new dummy client
2017-01-18 18:49:50 +01:00
Arkadiy Paronyan
61bfe42d1d
Fixed --base-path on windows ( #4193 )
...
* Fixed --base-path on windows
* Add support for optional args with default text
2017-01-18 18:45:30 +01:00
Tomasz Drwięga
b4ff08beb8
Fixing etherscan price parsing ( #4202 )
...
* Fixing etherscan price parsing
* Handling all errors
2017-01-18 17:56:21 +01:00
Robert Habermeier
3040a1c83e
Merge pull request #4093 from ethcore/better-timeouts
...
LES: Better timeouts + Track failed requests
2017-01-18 15:04:48 +01:00
GitLab Build Bot
779440450f
[ci skip] js-precompiled 20170118-121219
2017-01-18 12:15:38 +00:00
Jaco Greeff
08f80f2695
ESLint additional rules ( #4186 )
...
* Add eslint rule for consistent block padding
* Fix padding consistency issues
* Eslint test for duplicate imports
* Eslint closing bracket location
* Fix eslint jsx closing bracket
* missed a file
* Formatting
* Manual overrides for auto
* Manual overrides for auto
* More minor auto-override manual adjustments
2017-01-18 13:05:01 +01:00
Arkadiy Paronyan
d608ad2011
jsonr rpc bump for IPC fix ( #4200 )
2017-01-18 12:54:35 +01:00
GitLab Build Bot
1cb37e53c0
[ci skip] js-precompiled 20170118-114926
2017-01-18 11:52:24 +00:00
Jaco Greeff
c1ce65c870
Poll for upgrades as part of global status (long) ( #4197 )
...
* Poll for upgrades as part of global status (long)
* Fix path
2017-01-18 12:44:18 +01:00
Arkadiy Paronyan
7cab6ac263
Updater fixes ( #4196 )
...
* Minor typo to ensure it updates only when synced.
* Fix deadlock.
* Skip unneeded arg in making list.
* Allow auto-restart even when not running an update.
* Fix trace.
* Update update info on each loop.
* Fix build.
* Shutdown all sockets
* Remove superfluous use.
2017-01-17 23:34:46 +01:00
Arkadiy Paronyan
8852a05301
Prevent duplicate incoming connections ( #4180 )
2017-01-17 16:02:29 +01:00
Gav Wood
e95d66832c
Minor typo to ensure it updates only when synced. ( #4188 )
2017-01-17 13:05:02 +01:00
GitLab Build Bot
6339b3c88a
[ci skip] js-precompiled 20170117-102646
2017-01-17 10:34:02 +00:00
Evan Saulpaugh
7dde80fdf3
Minor refactor for clarity ( #4174 )
...
* Spelling & grammar in TxQueue Viewer description
* minor refactor for clarity
* Fix lint.
2017-01-17 11:17:38 +01:00
Björn Wagner
581604aae4
current release: 1.3 -> 1.4 ( #4183 )
2017-01-16 19:02:35 +01:00
Robert Habermeier
536df809c6
tests + documentation
2017-01-16 17:42:39 +01:00
Robert Habermeier
b960152d5b
CHT calculations for full nodes
2017-01-16 17:10:30 +01:00
Robert Habermeier
31aae4ed78
move cht module up a level
2017-01-16 16:55:23 +01:00
Nikolay Volf
f807aa65a1
Secret - from hash function, also validate data ( #4159 )
...
* from hash for secret
* checked from_slice
* move assert
* remove fromhash
2017-01-16 16:50:20 +01:00
Svyatoslav Nikolsky
bac6293309
gas_limit for blocks, mined by Parity will be divisible by 37 ( #4154 )
...
* gas_limit for new blocks will divide evenly by 13
* increased PARITY_GAS_LIMIT_DETERMINANT to 37
* separate method for marking mined block
* debug_asserts(gas_limit within protocol range)
* round_block_gas_limit method is now static
* made round_block_gas_limit free-function
* multiplier->multiple [ci skip]
2017-01-16 14:29:51 +01:00
Tomasz Drwięga
76daf50876
Support HTML5-routed dapps ( #4173 )
2017-01-16 10:49:27 +01:00
Jannis Redmann
1d618faaa6
fix subscribeToEvents test ( #4166 )
...
* try to fix freaking test
* fix subscribeToEvents test
This fix is a workaround. I would have used sinon fake timers, but I
couldn't get them to work.
* subscribeToEvent test: simplify code
2017-01-16 10:48:20 +01:00
GitLab Build Bot
aee70c4f16
[ci skip] js-precompiled 20170116-033453
2017-01-16 03:37:54 +00:00
GitLab Build Bot
d6ed42bff5
[ci skip] js-precompiled 20170115-041925
2017-01-15 04:22:19 +00:00
GitLab Build Bot
4b85e3ee57
[ci skip] js-precompiled 20170114-041818
2017-01-14 04:21:24 +00:00
GitLab Build Bot
af00986456
[ci skip] js-precompiled 20170113-172058
2017-01-13 17:23:57 +00:00
Nicolas Gotchac
51ac34f1cc
Fix dapps not loading ( #4170 )
...
* Add secure to dappsreg
* Remove trailing slash // fix dapps
2017-01-13 18:14:56 +01:00
Nicolas Gotchac
42ddb4f26c
Fix token images // Error in Contract Queries ( #4169 )
2017-01-13 18:14:25 +01:00
Tomasz Drwięga
d0cebc3982
Bumping hyper ( #4167 )
2017-01-13 16:30:49 +01:00
Gav Wood
c2f4716ee2
icarus -> update, increase web timeout. ( #4165 )
...
* icarus -> update, increase web timeout.
* Fix estimate gas
2017-01-13 16:30:16 +01:00
GitLab Build Bot
7611bbd3ee
[ci skip] js-precompiled 20170113-145733
2017-01-13 15:00:41 +00:00
Nicolas Gotchac
4a714d4a3e
Add a password strength component ( #4153 )
...
* Added new PasswordStrength Component
* Added tests
* PR Grumbles
2017-01-13 15:52:42 +01:00
Nicolas Gotchac
57ce845e4c
Stop flickering + added loader in AddressSelector ( #4149 )
...
* Stop UI flickering + added loader to AddressSelector #4103
* PR Grumbles
2017-01-13 15:52:24 +01:00
Robert Habermeier
f0eab337d8
Merge pull request #4036 from ethcore/on-demand-les-request
...
On demand LES request
2017-01-13 14:36:48 +01:00
Arkadiy Paronyan
cdc525449a
Ropsten fork detection ( #4163 )
2017-01-13 14:28:10 +01:00
Denis S. Soldatov aka General-Beck
d4cab20425
remove icarus
...
[ci skip]
2017-01-13 16:27:03 +04:00
GitLab Build Bot
f3717b96ff
[ci skip] js-precompiled 20170113-090039
2017-01-13 09:03:30 +00:00
Jaco Greeff
ee4ede915a
Pull in console dapp as builtin ( #4145 )
...
* Copy static dapps from static (no build)
* Console sources
* Add console to builtins
* Remove console assets
* Disable eslint on console.js
* Enable eslint after disable
* Webpack copy
2017-01-13 08:53:57 +00:00
Arkadiy Paronyan
cfb6dd2ea8
Optimized hash lookups ( #4144 )
...
* Optimize hash comparison
* Use libc
2017-01-13 08:52:23 +00:00
Tomasz Drwięga
e11353f94c
UnverifiedTransaction type ( #4134 )
...
* Introducing ValidSignedTransaction
* Verifiying transactions in engines
* Widening use of VerifiedSignedTransaction
* Renaming Transactions
* Uncommenting banning queue & Fixing tests
* Fixing json tests
* Fixing pre-homestead test
* Fixing imports
* Addressing grumbles
* Fixing test
2017-01-13 08:51:36 +00:00
Jannis Redmann
6f1c55ef5d
verification: check if server is running ( #4140 )
...
* verification: check if server is running
See also ethcore/email-verification#67c6466 and ethcore/sms-verification#a585e42.
* verification: show in the UI if server is running
* verification: code style ✨ , more i18n
* fix i18n key
2017-01-13 08:51:25 +00:00
GitLab Build Bot
3d06456fa5
[ci skip] js-precompiled 20170113-042838
2017-01-13 04:31:31 +00:00
GitLab Build Bot
54b06cea16
[ci skip] js-precompiled 20170112-222827
2017-01-12 22:31:32 +00:00
GitLab Build Bot
887e5f730e
[ci skip] js-precompiled 20170112-142354
2017-01-12 14:26:49 +00:00
Jaco Greeff
bff0f8ec5d
Remove onSubmit of current (no auto-change on password edit) ( #4151 )
...
* Remove onSubmit from current password
* Remove onSubmit from hint
2017-01-12 15:18:16 +01:00
GitLab Build Bot
b4eea05bd3
[ci skip] js-precompiled 20170112-133204
2017-01-12 13:35:58 +00:00
Jaco Greeff
0de34774b1
Trim spaces from InputAddress ( #4126 )
...
* Trim spaces for addresses
* onSubmit has only value, not event
* onSubmit (again)
* Length check on trimmed value
2017-01-12 14:25:41 +01:00
Nicolas Gotchac
81beec1352
Don't pop-up notifications after network switch ( #4076 )
...
* Better notifications
* Don't pollute with notifs if switched networks
* Better connection close/open events / No more notifs on change network
* PR Grumbles
* Add close and open events to HTTP // Add tests
* Fix tests
* WIP Signer Fix
* Fix Signer // Better reconnection handling
* PR Grumbles
* PR Grumbles
* Fixes wrong fetching of balances + Notifications
* Secure API WIP
* Updated Secure API Connection + Status
* Linting
* Linting
* Updated Secure API Logic
* Proper handling of token updates // Fixing poping notifications
* PR Grumbles
* PR Grumbles
* Fixing tests
2017-01-12 14:25:32 +01:00
GitLab Build Bot
bc2ebdc564
[ci skip] js-precompiled 20170112-130413
2017-01-12 13:07:28 +00:00
Jaco Greeff
389e4e3bc0
Use estimateGas error (as per updated implementation) ( #4131 )
...
* Use estimateGas error (as per updated implementation)
* EXCEPTION_ERROR as per #4142
2017-01-12 13:56:37 +01:00
Robert Habermeier
7dde02b25d
Merge branch 'master' into on-demand-les-request
2017-01-12 11:23:47 +01:00
Gav Wood
311730ea95
Improvements and optimisations to estimate_gas ( #4142 )
...
* Return 0 instead of error with out of gas on estimate_gas
* Fix stuff up.
* Another estimate gas fix.
* Alter balance to maximum possible rather than GP=0.
* Only increase to amount strictly necessary.
* Improvements and optimisations to estimate_gas.
- Introduce proper error type
- Avoid building costly traces
* Fix tests.
* Actually fix testsActually fix tests
2017-01-12 11:06:12 +01:00
Tomasz Drwięga
41da1a0a79
New jsonrpc-core with futures and metadata support ( #3859 )
...
* Bumping serde & serde_json
* Super-initial usage of new jsonrpc
* Single event loop for jsonrpc
* Metadata
* Supporting metadata extraction for eth_accounts
* Fixing Cargo.lock
* Removing uneccessary clones
* Fixing unused import
* Unused import
* Fixing test
2017-01-11 20:02:27 +01:00
Gav Wood
c4d96a64a2
Reenable mainnet update server. ( #4137 )
2017-01-11 20:01:45 +01:00
Jannis Redmann
f0c831d63f
temporarily skip failing test ( #4138 )
2017-01-11 20:01:19 +01:00
Robert Habermeier
78e670812c
fix test compilation
2017-01-11 18:57:38 +01:00
Robert Habermeier
e88c62d37d
Merge branch 'master' into better-timeouts
2017-01-11 18:55:16 +01:00
Robert Habermeier
7b3c648d3e
Merge branch 'master' into better-timeouts
2017-01-11 18:47:09 +01:00
keorn
844b1f8c0d
Refactor VoteCollector ( #4101 )
...
* dir
* simple validator list
* stub validator contract
* make the engine hold Weak<Client> instead of IoChannel
* validator set factory
* register weak client with ValidatorContract
* check chain security
* add address array to generator
* register provider contract
* update validator set on notify
* add validator contract spec
* simple list test
* split update and contract test
* contract change
* use client in tendermint
* fix deadlock
* step duration in params
* adapt tendermint tests
* add storage fields to test spec
* constructor spec
* execute under wrong address
* create under correct address
* revert
* validator contract constructor
* move genesis block lookup
* add removal ability to contract
* validator contract adding validators
* fix basic authority
* validator changing test
* more docs
* update sync tests
* remove env_logger
* another env_logger
* cameltoe
* hold EngineClient instead of Client
* return error on misbehaviour
* nicer return
* sprinkle docs
2017-01-11 17:56:50 +01:00
Gav Wood
56c546f465
Another minor estimation fix ( #4133 )
...
* Return 0 instead of error with out of gas on estimate_gas
* Fix stuff up.
* Another estimate gas fix.
* Alter balance to maximum possible rather than GP=0.
* Only increase to amount strictly necessary.
2017-01-11 17:51:48 +01:00
Nicolas Gotchac
8d3d76c107
Add proper label to method decoding inputs ( #4136 )
2017-01-11 17:44:56 +01:00
GitLab Build Bot
a4b93b4b88
[ci skip] js-precompiled 20170111-160821
2017-01-11 16:11:45 +00:00
Jaco Greeff
3e74d46a06
Remove bindActionCreators({}, dispatch) (empty) ( #4135 )
2017-01-11 17:02:53 +01:00
Jaco Greeff
32dbf9958e
Better error log reporting & handling ( #4128 )
2017-01-11 17:02:39 +01:00
Nicolas Gotchac
b54709605a
Fix broken transfer total balance ( #4127 )
2017-01-11 17:01:35 +01:00
Robert Habermeier
7123f19a75
Test harness for lightsync ( #4109 )
...
* make on_connect/disconnect public
* free flow params constructor
* Shared ownership of LES handlers
* light provider impl for test client
* skeleton for testing light sync
* have test_client use actual genesis
* fix underflow in provider
* test harnesses for lightsync
* fix tests
* fix test failure caused by test_client changes
2017-01-11 14:39:03 +01:00
Gav Wood
7286d42b7d
Fix call/estimate_gas ( #4121 )
...
* Return 0 instead of error with out of gas on estimate_gas
* Fix stuff up.
2017-01-11 14:28:27 +01:00
GitLab Build Bot
2edd893f23
[ci skip] js-precompiled 20170111-112556
2017-01-11 11:28:45 +00:00
Tomasz Drwięga
26500af8c0
Fixing decoding API with signatures in names ( #4125 )
2017-01-11 12:17:04 +01:00
Tomasz Drwięga
21006da125
Get rid of unsafe code in ethkey, propagate incorrect Secret errors. ( #4119 )
...
* Implementing secret
* Fixing tests
2017-01-11 12:16:47 +01:00
Jannis Redmann
4ecd9da6e4
basic tests for subscribeToEvents ( #4115 )
...
* subscribeToEvent fixtures ✅
* subscribeToEvent tests ✅
2017-01-11 12:14:04 +01:00
Robert Habermeier
5b8a7259c1
Merge branch 'master' into on-demand-les-request
2017-01-11 11:39:43 +01:00
GitLab Build Bot
6f3cefe17f
[ci skip] js-precompiled 20170110-180532
2017-01-10 18:09:09 +00:00
Tomasz Drwięga
7aa2af3e21
Auto-detect hex encoded bytes in sha3 ( #4108 )
...
* Auto-detect hex encoded bytes in sha3
* Using types/isHex
* Removing unused imports
2017-01-10 18:56:56 +01:00
Gav Wood
23feb7998f
Use binary chop to estimate gas accurately ( #4100 )
...
* Initial sketch.
* Building.
* Fix a few things.
* Fix issue, add tracing.
* Address grumbles
* Raise upper limit if needed
* Fix test.
2017-01-10 18:56:41 +01:00
Denis S. Soldatov aka General-Beck
baa754cc52
Update gitlab-ci
...
fix curl in arm
2017-01-10 20:26:15 +04:00
Arkadiy Paronyan
148ea37687
v1.6 in master ( #4113 )
2017-01-10 15:41:59 +01:00
Gav Wood
ae144b7f62
Ignore get_price_info test by default. ( #4112 )
2017-01-10 15:41:48 +01:00
Robert Habermeier
d515ef9a2a
test for id_guard behavior
2017-01-09 12:20:44 +01:00
Robert Habermeier
54058e3712
ensure failed requests considered unfulfilled
2017-01-09 11:29:06 +01:00
Robert Habermeier
75b5acf21d
use common BasicAccount type
2017-01-05 13:26:14 +01:00
Robert Habermeier
8446a8354b
Merge branch 'master' into on-demand-les-request
2017-01-05 13:18:24 +01:00
Robert Habermeier
f63faea308
test for request_set and remove idle flag
2017-01-04 18:43:11 +01:00
Robert Habermeier
04282be721
use request set to provide better timeouts
2017-01-04 18:00:12 +01:00
Robert Habermeier
6ad0a0baaa
fix test imports
2017-01-04 16:12:58 +01:00
Robert Habermeier
5060370c70
Merge branch 'lightsync' into on-demand-les-request
2017-01-04 15:18:22 +01:00
Robert Habermeier
ed98c389ca
no_peers test
2017-01-04 14:54:50 +01:00
Robert Habermeier
62bc92ff4d
Merge branch 'master' into on-demand-les-request
2017-01-04 14:33:45 +01:00
Robert Habermeier
38ac84f0c7
reassign requests on failure
2017-01-04 14:33:32 +01:00
Robert Habermeier
ca35b345ca
separate request dispatch from creation
2017-01-04 13:58:26 +01:00
Robert Habermeier
1d51b6f7e5
handle incoming LES requests
2017-01-04 13:34:50 +01:00
Robert Habermeier
4e94f43644
tests for request module
2017-01-04 12:48:07 +01:00
Robert Habermeier
01977e60aa
finish request module, basic dispatch
2017-01-03 19:13:40 +01:00
Robert Habermeier
4dbbc3bc88
beginnings of on_demand request module + verification
2017-01-03 16:18:57 +01:00
Robert Habermeier
ddf2b944b5
on demand request dispatch
2016-12-28 21:46:55 +01:00
Robert Habermeier
4daa645789
dispatch header requests
2016-12-28 16:20:46 +01:00
Robert Habermeier
5309ba45a8
update peer status from announcement
2016-12-28 16:20:35 +01:00
Robert Habermeier
c2ad769fb7
Merge branch 'master' into on-demand-les-request
2016-12-28 14:00:33 +01:00
Robert Habermeier
428d5db9d1
beginning of on_demand
2016-12-27 16:43:28 +01:00
Robert Habermeier
9b4f90718f
Display impl for ReqId
2016-12-27 13:54:51 +01:00