File tree 2 files changed +4
-4
lines changed
crates/shielded_token/src
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -588,7 +588,7 @@ jobs:
588
588
token : ${{ secrets.CODECOV_TOKEN }}
589
589
590
590
test-ledger-app :
591
- timeout-minutes : 30
591
+ timeout-minutes : 40
592
592
runs-on : [ubuntu-latest]
593
593
594
594
env :
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ pub fn masp_max_reward_rate_key<TransToken: trans_token::Keys>(
70
70
. with_segment ( MASP_MAX_REWARD_RATE_KEY . to_owned ( ) )
71
71
}
72
72
73
- /// The precision of rewards for the given token
73
+ /// The shielded reward precision key for the given token
74
74
pub fn masp_reward_precision_key < TransToken : trans_token:: Keys > (
75
75
token_addr : & Address ,
76
76
) -> storage:: Key {
@@ -102,7 +102,7 @@ pub fn masp_last_inflation_key<TransToken: trans_token::Keys>(
102
102
. with_segment ( MASP_LAST_INFLATION_KEY . to_owned ( ) )
103
103
}
104
104
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
106
106
pub fn is_masp_undated_balance_key ( key : & storage:: Key ) -> Option < Address > {
107
107
match & key. segments [ ..] {
108
108
[
@@ -199,7 +199,7 @@ pub fn is_masp_token_map_key(key: &storage::Key) -> bool {
199
199
] if * addr == address:: MASP && prefix == MASP_TOKEN_MAP_KEY )
200
200
}
201
201
202
- /// Check if the given storage key is a masp nullifier key
202
+ /// Check if the given storage key is a masp conversion key
203
203
pub fn is_masp_conversion_key ( key : & storage:: Key ) -> Option < AssetType > {
204
204
match & key. segments [ ..] {
205
205
[
You can’t perform that action at this time.
0 commit comments