mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 18:47:56 +00:00
1a647500a7
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
22 lines
528 B
Rust
22 lines
528 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, subxt_test, test_context};
|
|
|
|
#[subxt_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())
|
|
}
|