Skip to content
This repository was archived by the owner on Feb 28, 2021. It is now read-only.

Commit 8f5a6b7

Browse files
author
Thomas Scholtes
committed
Update rust toolchain to 2020-04-20
This fixes rust-lang/rust#69933
1 parent 1ecf004 commit 8f5a6b7

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.buildkite/pipeline.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
command: "ci/run"
44
timeout_in_minutes: 60
55
env:
6-
DOCKER_IMAGE: gcr.io/opensourcecoin/radicle-registry/ci-base:9956955f61e2c91fb94a2ed4eee26bf17aa44b50
6+
DOCKER_IMAGE: gcr.io/opensourcecoin/radicle-registry/ci-base:c068afc4d2012cd70a9943ead3671e2e5b35508a
77
DOCKER_FILE: ci/base-image/Dockerfile
88
STEP_DOCKER_FILE: ci/node-image/Dockerfile
99
STEP_DOCKER_IMAGE: gcr.io/opensourcecoin/radicle-registry/node

ci/base-image/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Includes
44
#
5-
# * Rustup with `nightly-2020-03-19` toolchain (see RUST_VERSION)
5+
# * Rustup with `nightly-2020-04-20` toolchain (see RUST_VERSION)
66
# * Additional rustup components and the wasm32 target
77
# * sccache v0.2.12
88

@@ -42,7 +42,7 @@ RUN set -euxo pipefail; \
4242

4343
# Install rustup and default toolchain from RUST_VERSION. This is copied from
4444
# https://github.com/rust-lang/docker-rust/blob/8d0f25416858e2c1f59511a15c2bd0445b402caa/1.39.0/buster/slim/Dockerfile
45-
ENV RUST_VERSION=nightly-2020-03-19
45+
ENV RUST_VERSION=nightly-2020-04-20
4646
RUN set -eux; \
4747
dpkgArch="$(dpkg --print-architecture)"; \
4848
case "${dpkgArch##*-}" in \

client/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ impl ClientT for Client {
234234

235235
async fn free_balance(&self, account_id: &AccountId) -> Result<state::AccountBalance, Error> {
236236
let account_info = self
237-
.fetch_map_value::<system::Account<Runtime>, _, _>(account_id.clone())
237+
.fetch_map_value::<system::Account<Runtime>, _, _>(*account_id)
238238
.await?;
239239
Ok(account_info.data.free)
240240
}

rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2020-03-19
1+
nightly-2020-04-20

0 commit comments

Comments
 (0)