Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Duniter v2S
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nodes
rust
Duniter v2S
Merge requests
!103
Remove genesis params `*certs_expire_on`
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Remove genesis params `*certs_expire_on`
elois-rem-gen-param-certs-expire-on
into
master
Overview
0
Commits
2
Pipelines
0
Changes
1
Merged
Éloïs
requested to merge
elois-rem-gen-param-certs-expire-on
into
master
2 years ago
Overview
0
Commits
2
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Viewing commit
1d9e7f9e
Prev
Next
Show latest version
1 file
+
1
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
1d9e7f9e
tests(cucumber): comment log extrinsic encoded
· 1d9e7f9e
Éloïs
authored
2 years ago
end2end-tests/tests/common/mod.rs
+
1
−
8
Options
@@ -132,14 +132,7 @@ pub async fn create_block_with_extrinsic(
client
:
&
Client
,
extrinsic
:
SignedSubmittableExtrinsic
,
)
->
Result
<
subxt
::
tx
::
TxEvents
<
GdevConfig
>>
{
/*// Get a hash of the extrinsic (we'll need this later).
use subxt::sp_runtime::traits::Hash as _;
let ext_hash = <GdevConfig as subxt::Config>::Hashing::hash_of(&encoded_extrinsic);
// Submit and watch for transaction progress.
let sub = client.rpc().submit_extrinsic(encoded_extrinsic).await?;
let watcher = TxProgress::new(sub, client, ext_hash);*/
println!
(
"extrinsic encoded: {}"
,
hex
::
encode
(
extrinsic
.encoded
()));
//println!("extrinsic encoded: {}", hex::encode(extrinsic.encoded()));
let
watcher
=
extrinsic
.submit_and_watch
()
.await
?
;
Loading