Skip to content
Snippets Groups Projects
Commit 2e3f12ec authored by Hugo Trentesaux's avatar Hugo Trentesaux
Browse files

fix(cucumber) clippy and contributing

parent c0b78efd
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,9 @@ Please read [Developer documentation] before contribute. ...@@ -31,7 +31,9 @@ Please read [Developer documentation] before contribute.
2. Ensure that you respect the [commit naming conventions]. 2. Ensure that you respect the [commit naming conventions].
3. Ensure that all automated tests pass with the `npm test` command. 3. Ensure that all automated tests pass with the `cargo test` command.
3. Ensure that the code is well formated `cargo fmt` and comply with the good practices `cargo clippy`. If you have been working on tests, check everything with `cargo clippy --all --tests`.
4. Update the documentation with details of changes to the interface, this includes new environment 4. Update the documentation with details of changes to the interface, this includes new environment
variables, exposed ports, useful file locations and container parameters. variables, exposed ports, useful file locations and container parameters.
......
...@@ -33,7 +33,7 @@ pub async fn certify( ...@@ -33,7 +33,7 @@ pub async fn certify(
client, client,
api.tx() api.tx()
.cert() .cert()
.add_cert(to.into()) .add_cert(to)
.create_signed(&from, ()) .create_signed(&from, ())
.await?, .await?,
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment