Skip to content

Commit f598ec4

Browse files
committed
Increase the timeout for integration tests to make CI pass.
1 parent ebbf71d commit f598ec4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ jobs:
588588
token: ${{ secrets.CODECOV_TOKEN }}
589589

590590
test-ledger-app:
591-
timeout-minutes: 30
591+
timeout-minutes: 40
592592
runs-on: [ubuntu-latest]
593593

594594
env:

crates/shielded_token/src/storage_key.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ pub fn masp_max_reward_rate_key<TransToken: trans_token::Keys>(
7070
.with_segment(MASP_MAX_REWARD_RATE_KEY.to_owned())
7171
}
7272

73-
/// The precision of rewards for the given token
73+
/// The shielded reward precision key for the given token
7474
pub fn masp_reward_precision_key<TransToken: trans_token::Keys>(
7575
token_addr: &Address,
7676
) -> storage::Key {
@@ -102,7 +102,7 @@ pub fn masp_last_inflation_key<TransToken: trans_token::Keys>(
102102
.with_segment(MASP_LAST_INFLATION_KEY.to_owned())
103103
}
104104

105-
/// Check if the given storage key is a masp reward balance key
105+
/// Check if the given storage key is the undated balance of a token
106106
pub fn is_masp_undated_balance_key(key: &storage::Key) -> Option<Address> {
107107
match &key.segments[..] {
108108
[
@@ -199,7 +199,7 @@ pub fn is_masp_token_map_key(key: &storage::Key) -> bool {
199199
] if *addr == address::MASP && prefix == MASP_TOKEN_MAP_KEY)
200200
}
201201

202-
/// Check if the given storage key is a masp nullifier key
202+
/// Check if the given storage key is a masp conversion key
203203
pub fn is_masp_conversion_key(key: &storage::Key) -> Option<AssetType> {
204204
match &key.segments[..] {
205205
[

0 commit comments

Comments
 (0)