-
Notifications
You must be signed in to change notification settings - Fork 358
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fake VRF for ethereum pending blocks (#2576)
* upgrade moonkit * upgrade frontier * implement new runtime api initialize_pending_block * update frontier pin * add zombi test with an RPC node that is not a collator * update frontier pin * fix zombi rpc tests for moonbase * add zombi rpc tests for moonbeam * Execute zombi RPC tests on CI * typo * lint * typo * zombi RPC tests: add moonbeam * lints * min gas price is higher on moonbeam * fix typo in moonwall config zombie_moonbeam_rpc
- Loading branch information
Showing
8 changed files
with
570 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"settings": { | ||
"timeout": 1000, | ||
"provider": "native" | ||
}, | ||
"relaychain": { | ||
"chain": "rococo-local", | ||
"default_command": "tmp/polkadot", | ||
"default_args": [ | ||
"--no-hardware-benchmarks", | ||
"-lparachain=debug", | ||
"--database=paritydb" | ||
], | ||
"nodes": [ | ||
{ | ||
"name": "alice", | ||
"ws_port": 33356, | ||
"validator": true | ||
}, | ||
{ | ||
"name": "bob", | ||
"validator": true | ||
} | ||
] | ||
}, | ||
"parachains": [ | ||
{ | ||
"id": 1000, | ||
"chain": "moonbase-local", | ||
"chain_spec_path": "tmp/moonbase-raw-spec.json", | ||
"collators": [ | ||
{ | ||
"name": "alith", | ||
"ws_port": 33345, | ||
"command": "../target/release/moonbeam", | ||
"args": [ | ||
"--no-hardware-benchmarks", | ||
"--force-authoring", | ||
"-lparachain=debug", | ||
"--database=paritydb" | ||
] | ||
}, | ||
{ | ||
"name": "RPC1", | ||
"validator": false, | ||
"ws_port": 33048, | ||
"p2p_port": 33049, | ||
"command": "../target/release/moonbeam", | ||
"args": [ | ||
"--no-hardware-benchmarks", | ||
"-lparachain=debug", | ||
"--database=paritydb" | ||
] | ||
} | ||
] | ||
} | ||
], | ||
"types": { | ||
"Header": { | ||
"number": "u64", | ||
"parent_hash": "Hash", | ||
"post_state": "Hash" | ||
} | ||
} | ||
} |
Oops, something went wrong.