Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
ddfa4f1
Use locked/polkadot-v0.9.40 substrate and frontier deps
dmitrylavrenov Nov 30, 2023
7c93f7c
[substrate-apply] Move grandpa crates to consensus folder #13458
dmitrylavrenov Nov 30, 2023
6502f4d
Use suitable evm version
dmitrylavrenov Nov 30, 2023
83d879b
Fix naming
dmitrylavrenov Nov 30, 2023
b82fdca
[frontier-apply] EVM + Weight v2 support #1039
dmitrylavrenov Dec 1, 2023
03778fc
[substrate-apply] Deprecate Weight::from_{ref_time, proof_size} #13475
dmitrylavrenov Dec 1, 2023
b2956a3
[substrate-apply] Offences report system rework #13425
dmitrylavrenov Dec 1, 2023
d635e8f
Add missing GasLimitPovSizeRatio for pallet_evm::Config
dmitrylavrenov Dec 4, 2023
8ea9f5e
[frontier-apply] Add pending support for eth_getBlockByNumber #1048
dmitrylavrenov Dec 7, 2023
38a4476
Fix is_precompile return value
dmitrylavrenov Dec 7, 2023
0688449
Add missing args for weight limit and transaction len at runner call …
dmitrylavrenov Dec 7, 2023
a25f485
Add missing trait OnFinalize
dmitrylavrenov Dec 7, 2023
10bc7f9
Use SyncingService for Eth
dmitrylavrenov Dec 7, 2023
c58a4cc
[frontier-apply] sql backend w/ receipt log indexing #883 (part 1)
dmitrylavrenov Dec 7, 2023
d063971
[frontier-apply] Add txpool RPC and impl new_pending_transaction_filt…
dmitrylavrenov Dec 7, 2023
01c062e
[substrate-apply] Extract syncing protocol from sc-network #12828
dmitrylavrenov Dec 8, 2023
dc62dc4
sql backend w/ receipt log indexing #883 (part 2)
dmitrylavrenov Dec 8, 2023
4534351
[frontier-apply] sql backend w/ receipt log indexing #883 (part 3)
dmitrylavrenov Dec 11, 2023
c31739c
Fix tests
dmitrylavrenov Dec 11, 2023
6fc23ec
Update features snapshot
dmitrylavrenov Dec 11, 2023
3dfcf0c
Fux typo
dmitrylavrenov Dec 11, 2023
2f394d6
Fix clippy default usage
dmitrylavrenov Dec 11, 2023
62dd6c2
Fix clippy ref usage
dmitrylavrenov Dec 11, 2023
bd7b194
Add missing docs
dmitrylavrenov Dec 11, 2023
0f3b31d
Introduce frontier backend configuration
dmitrylavrenov Dec 11, 2023
1748656
[frontier-apply] make rocksdb and paritydb optional. (#1088)
dmitrylavrenov Dec 12, 2023
51b3313
Make new_partial async
dmitrylavrenov Dec 12, 2023
f7194d1
Return result for frontier backend creation
dmitrylavrenov Dec 12, 2023
c0d9e3a
Implement a helper function to remove frontier offchain db
dmitrylavrenov Dec 12, 2023
f2a03cc
Update features snapshot
dmitrylavrenov Dec 12, 2023
1e8cdd8
Fix clippy
dmitrylavrenov Dec 12, 2023
ea07c32
Update help stdout fixture
dmitrylavrenov Dec 12, 2023
94b963f
Merge branch 'master' into polkadot-v0.9.40
dmitrylavrenov Dec 13, 2023
d67e63d
Merge branch 'master' into polkadot-v0.9.40
dmitrylavrenov Dec 18, 2023
409db70
[substrate-apply] Pub enum runtime to pub struct runtime #13250
dmitrylavrenov Dec 18, 2023
9b5459e
Update frontier
dmitrylavrenov Dec 22, 2023
54130a7
Properly use evm deps
dmitrylavrenov Dec 22, 2023
1e4d920
Merge branch 'master' into polkadot-v0.9.40
dmitrylavrenov Dec 22, 2023
9b0bee1
Fix fmt
dmitrylavrenov Dec 26, 2023
020def5
Use fully qualified TxPool usage
dmitrylavrenov Jan 8, 2024
8d66bed
Link TODO to humanode issue
dmitrylavrenov Jan 8, 2024
5268b4f
Add test to verify pending block extraction
dmitrylavrenov Jan 9, 2024
bdbe4dd
Return new_partial to be synchronously
dmitrylavrenov Jan 9, 2024
6020f1c
Remove missed added test file
dmitrylavrenov Jan 9, 2024
193f3cb
Fix help sdtout fixture
dmitrylavrenov Jan 17, 2024
d0ef1f3
Remove pending block test
dmitrylavrenov Jan 17, 2024
2088989
Merge branch 'master' into polkadot-v0.9.40
dmitrylavrenov Jan 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Link TODO to humanode issue
  • Loading branch information
dmitrylavrenov committed Jan 8, 2024
commit 8d66bedd177b222cba57ee2bc4adcac82fd14061
6 changes: 2 additions & 4 deletions crates/humanode-runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1338,8 +1338,7 @@ impl_runtime_apis! {
access_list.unwrap_or_default(),
is_transactional,
validate,
// TODO: should we define limit for weight and transaction len.
// <https://github.com/paritytech/frontier/pull/1039>.
// TODO(#864): set proper values.
None,
None,
&config,
Expand Down Expand Up @@ -1378,8 +1377,7 @@ impl_runtime_apis! {
access_list.unwrap_or_default(),
is_transactional,
validate,
// TODO: should we define limit for weight and transaction len.
// <https://github.com/paritytech/frontier/pull/1039>.
// TODO(#864): set proper values.
None,
None,
&config,
Expand Down