Jochen Müller
2df74c26dd
Bump to v3.2.5-rc.1
2021-04-28 15:08:33 +02:00
varasev
ed12fffeef
Berlin HF on xDai ( #384 )
...
* Berlin HF on xDai
* Update enodes for xDai
Co-authored-by: rakita <rakita@users.noreply.github.com>
2021-04-28 14:07:24 +02:00
Jochen Müller
c03cc15468
Implement eth/65 ( #352 )
...
* EIP-2464: eth/65: transaction announcements and retrievals
* Updates to eth-65 implementatiom
- Replace deprecated syntax and method name
- Replace call to removed method
- Reimplement rlp::Encodable for SignedTransaction
* fmt
* More updates
- Replace calls to removed methods
- More dyns
* Apply requested changes
- Avoid unused variable warnings
- Avoid implementing Encodable trait for Transaction
- Update message encoding to EIP-2718 transaction format
* Update sync stats of eth-65 peers properly
* fmt & fix error propagation
* Fix: Add correct subset of transactions to stats.
* Update list of last sent transactions correctly.
Co-authored-by: Artem Vorotnikov <artem@vorotnikov.me>
Co-authored-by: Karim Agha <karim.dev@gmail.com>
Co-authored-by: rakita <rakita@users.noreply.github.com>
2021-04-27 15:33:40 +02:00
rakita
3b3ecf6676
Bump eth tests to 8.0.3 ( #349 )
2021-04-27 14:36:50 +02:00
rakita
be9b16ab67
Bump parking_lot to 0.11.1. Revert std mutex from #277 ( #350 )
2021-04-27 13:12:19 +02:00
varasev
392a909cb7
Berlin HF in Kovan ( #380 )
...
* Berlin HF in Kovan
According to https://github.com/poanetwork/poa-chain-spec/pull/171
* Update nodes for Kovan
2021-04-26 10:21:01 +02:00
Jochen Müller
6f5a00a642
Merge branch 'main' into dev
2021-04-21 15:42:43 +02:00
Jochen Müller
2453f1a803
Merge branch 'release/v3.2.x' into main
2021-04-21 15:27:39 +02:00
rakita
09967329af
Bump to v3.2.4
2021-04-15 21:49:20 +02:00
rakita
459a1a02a4
Fix broadcast for typed tx
2021-04-15 21:47:50 +02:00
Wei Tang
a716eb3871
EIP-2929: only add params.address to access list
2021-04-15 18:15:40 +02:00
Wei Tang
0fd7c59724
EIP-2929: add tx sender and address into the access list
2021-04-15 18:02:24 +02:00
rakita
aa41520dd1
Bump to v3.2.3
2021-04-15 18:02:24 +02:00
Wei Tang
4bffab6715
Fix compile
2021-04-15 18:02:24 +02:00
Wei Tang
5709dbc3e0
EIP2929: only add builtin to warm address if they are active
2021-04-15 18:02:24 +02:00
Wei Tang
6ce6666cbb
EIP-2929: add tx sender and address into the access list ( #360 )
2021-04-15 17:41:33 +02:00
rakita
582bca385f
Bump to v3.2.2-rc.1. Changelog
2021-03-31 15:07:27 +02:00
rakita
9037ad0ea7
Bump eth/tests to v8.0.2
2021-03-31 13:44:14 +02:00
rakita
c9190a39ed
Executable queue for ancient blocks inclusion ( #208 )
...
* Executable queue for ancient blocks inclusion
* Add drop trait for client
* Added shutdown to tests
* Remove doubled call
* Use reth-util from reth repo
2021-03-25 16:04:32 +01:00
rakita
85391f99ac
Backport AuRa commits for xdai ( #330 )
...
* Add SealingState; don't prepare block when not ready. (#10529 )
* Fix a few typos and unused warnings. #10803
* Configuration map of block reward contract addresses (#10875 )
* Step duration map configuration parameter ported from the POA Network fork (#10902 )
* Add a 2/3 quorum option to Authority Round. (#10909 )
* Additional arithmetic EVM opcode benchmarks (#10916 )
* RPC method for clearing the engine signer (#10920 )
* authority_round: Fix next_step_time_duration. (#11379 )
* Aura: Report malice on sibling blocks from the same validator (#11160 )
* TxPermissions ver 3: gas price & data (#11170 )
* Add randomness contract support to AuthorityRound. (#10946 )
* Set the block gas limit to the value returned by a contract call (#10928 )
* AuthorityEngine: Minor cleanups. (#11408 )
* Add POSDAO transition and malice report queue. (#11245 )
* PoA call validators on_close_block
* Actualize spec files for POA Networks
* Some fixes after merge
* Crypto error desc
* AuRa on_close_block Error::Old fix
Co-authored-by: POA <33550681+poa@users.noreply.github.com>
2021-03-25 14:37:01 +01:00
rakita
561ed8df3c
fix miner_author by adding dummy msg
2021-03-24 17:50:36 +01:00
rakita
5eacff59e8
Revert "Remove eth/63 protocol version ( #252 )"
...
This reverts commit bbecb0415e
.
2021-03-23 11:59:33 +01:00
rakita
d030870220
Merge remote-tracking branch 'origin/main' into dev
2021-03-21 21:58:13 +01:00
Karim Agha
ee88247e71
Fixing outdated readme links ( #322 )
2021-03-21 21:58:02 +01:00
Jochen Müller
37f5291538
Add Nethermind to clients that accept service transactions ( #324 )
...
* Add Nethermind to clients that accept service transactions
* fmt
2021-03-18 14:00:05 +01:00
rakita
5fdedf0858
Bump to v3.2.1. Changelog
2021-03-17 09:46:36 +01:00
Jochen Müller
504777e879
Implement the filter argument in parity_pendingTransactions ( #295 )
...
* Add filters for pending transactions to RPC API
Allow filtering results in the parity_pendingTransaction endpoint as described in the API docs.
* Make arguments in parity_pendingTransactions work together
filter and limit
* fmt
* Requested changes
- filter in ethcore to avoid unneccessary copying
- rename gas_price to gasPrice
- implement requesting contract creation txs with "action"
* Some beautifying
Remove missing import and unneccessary dependency entry, add a comment
and set right lint level on new module
* fixed broken build after merge
* fmt
* fixing CI errors: type conversion
Co-authored-by: Karim Agha <karim.dev@gmail.com>
2021-03-16 13:39:42 +01:00
rakita
3317797285
Initial sync block stuck. Block import logs ( #318 )
2021-03-16 12:08:22 +01:00
rakita
33a3a9deec
Initial sync block stuck. Block import logs ( #318 )
...
Co-authored-by: Karim Agha <karim.dev@gmail.com>
2021-03-14 11:18:38 +01:00
Karim Agha
327c4bcb14
Fixing outdated readme links ( #322 )
2021-03-14 10:25:45 +01:00
Karim Agha
b6b5129058
Following up on PR #316 , removing unused conversions that are now deadcode ( #321 )
2021-03-14 10:25:14 +01:00
Karim Agha
29dc10c446
Updating ethcore and ethjson crates to Rust Edition 2018 ( #316 )
...
* Migrating use crate::Type imports to Rust 2018 edition
* import name fixes
* fmt
* removing diff leftover
* catching up with latest developments on dev
* fmt
* removing another diff leftover
2021-03-12 14:55:49 +01:00
Simon KP
48e7d6cee4
Send SIGTERM instead of SIGHUP to OE daemon ( #317 )
...
* Send SIGTERM instead of SIGHUP to OE daemon
* Address comments
2021-03-12 13:00:09 +01:00
rakita
a0f406e26b
Ethereum-types and various libs upgrade ( #315 )
...
* Upgrade Eth types
ethereum-types -> 0.9.2
rlp -> 0.4.6
keccak-hash -> 0.5.0
parity-crypto -> 0.6.2
ethabi -> 0.12.0
ethabi-derive -> 0.12.0
ethabi-contract -> 0.11.0
ethbloom -> 0.9.1
rand -> 0.7.3
trie-standardmap -> 0.15.2
triehash -> 0.5.0
* backport #10714 . Small changes, merge fixes
Co-authored-by: mdben1247 <mdben1247@users.noreply.github.com>
2021-03-12 10:12:42 +01:00
rakita
3f8e0cfec4
Merge remote-tracking branch 'origin/main' into dev
2021-03-11 16:30:47 +01:00
rakita
f143ddb75a
[devops] Upgrade docker alpine to v1.13.2
2021-03-11 08:42:23 +01:00
rakita
32fd2b484c
Merge remote-tracking branch 'origin/main' into dev
2021-03-10 17:23:00 +01:00
rakita
187c81b3f1
Upgrade ethereum/tests to v8.0.1 ( #301 )
2021-03-10 17:18:17 +01:00
rakita
d7a958129f
[evmbin] Omit storage output, now for std-json ( #311 )
...
* [evmbin] Omit storage output, now for std-json
* fix tests
2021-03-10 16:39:32 +01:00
rakita
eca8fb74ae
Strict memory order ( #306 )
...
* Make MemoryOrdering more strict
* fmt
* Strict mem order for priority_tasks_gate
2021-03-10 12:36:23 +01:00
Karim Agha
e2024c4b81
Fixing a compilation warning ( #308 )
...
* Fixing a compilation warning
2021-03-10 09:46:34 +01:00
rakita
5b904476cd
Backport: Block sync stopped without any errors. #277 ( #286 )
...
* Backport: Block sync stopped without any errors. #277
* fmt
2021-03-09 11:20:32 +01:00
rakita
7ea5707904
Freeze pruning while creating snapshot ( #205 )
...
* Freeze pruning while creating snapshot
* Use scopeguard for snapshot generation
* Snapshot 1k blocks
* Snapshot number correction
2021-03-09 09:47:49 +01:00
rakita
458d55559e
Bump to v3.2.0
2021-03-08 17:49:59 +01:00
rakita
6f50061f0c
AuRa multi block reward ( #290 )
...
* Multi block reward for AuRa
* Added test
* Better error on wrong config
2021-03-08 11:59:04 +01:00
gakada
dbc5f94241
Migrate compare_and_swap to compare_exchange ( #291 )
2021-03-06 11:30:52 +01:00
rakita
0cf0cdbb86
Disable CI on tag for windows2019 machine"
...
This reverts commit efb80e1032
.
2021-03-05 19:27:01 +01:00
rakita
91e57c803d
Disable EIP-2315
2021-03-05 18:01:27 +01:00
adria0.eth
0fcb102f03
Improved metrics ( #240 )
...
Added db metrics (kvdb_bytes_read, kvdb_bytes_written, kvdb_reads, kvdb_writes)
Added --metrics-prefix=[prefix]
2021-03-03 22:44:35 +01:00
Dusan Stanivukovic
973a5a594b
Sunce86/add support eip2930 ethereum tests runner ( #288 )
...
* added support for eip2930 tests
Co-authored-by: sunce86 <dusan.stanivukovic@gmail.pm>
2021-03-03 15:57:25 +01:00