Files
pezkuwi-subxt/testing/integration-tests/src/frame/timestamp.rs
T
Tadeo Hepperle 3b9fd72b26 added at_latest (#900)
* added at_latest

* change some documentation

* remove inline
2023-04-11 13:07:12 +02:00

22 lines
517 B
Rust

// Copyright 2019-2023 Parity Technologies (UK) Ltd.
// This file is dual-licensed as Apache-2.0 or GPL-3.0.
// see LICENSE for license details.
use crate::{node_runtime, test_context};
#[tokio::test]
async fn storage_get_current_timestamp() {
let ctx = test_context().await;
let api = ctx.client();
let timestamp = api
.storage()
.at_latest()
.await
.unwrap()
.fetch(&node_runtime::storage().timestamp().now())
.await;
assert!(timestamp.is_ok())
}