Skip to content

Commit 472b7c5

Browse files
committed
convert types
1 parent edda103 commit 472b7c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/voting/dao-voting-cosmos-staked/src/tests/test_tube/integration_tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ fn test_staked_voting_power_and_update() {
101101
.to_any(),
102102
),
103103
expiration: Some(osmosis_std::shim::Timestamp {
104-
seconds: expiration.seconds(),
105-
nanos: expiration.subsec_nanos(),
104+
seconds: expiration.seconds() as i64,
105+
nanos: expiration.subsec_nanos() as i32,
106106
}),
107107
}),
108108
}

0 commit comments

Comments
 (0)