Skip to content

Commit 1dad69f

Browse files
committed
update deps
Signed-off-by: bkioshn <[email protected]>
1 parent 05242cf commit 1dad69f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

hermes/apps/athena/modules/auth/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ rand = "0.8.5"
1818
serde_json = "1.0.142"
1919
serde = "1.0.226"
2020

21-
cardano-blockchain-types = { version = "0.0.6", git = "https://github.com/input-output-hk/catalyst-libs", tag = "cardano-blockchain-types/v0.0.6" }
22-
rbac-registration = { version = "0.0.10", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "rbac-registration/v0.0.10" }
23-
catalyst-types = { version = "0.0.7", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "catalyst-types/v0.0.7" }
21+
cardano-blockchain-types = { version = "0.0.8", git = "https://github.com/input-output-hk/catalyst-libs", tag = "cardano-blockchain-types/v0.0.8" }
22+
rbac-registration = { version = "0.0.14", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "rbac-registration/v0.0.14" }
23+
catalyst-types = { version = "0.0.10", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "catalyst-types/v0.0.10" }
2424

2525
[dev-dependencies]
2626
test-case = "3.3.1"

hermes/apps/athena/modules/auth/src/token.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ impl CatalystRBACTokenV1 {
184184

185185
/// Returns a network.
186186
#[allow(dead_code)]
187-
pub(crate) fn network(&self) -> Network {
188-
self.network
187+
pub(crate) fn network(&self) -> &Network {
188+
&self.network
189189
}
190190

191191
/// Returns a corresponded registration chain if any registrations present.
@@ -200,7 +200,7 @@ impl CatalystRBACTokenV1 {
200200
persistent,
201201
volatile,
202202
&self.catalyst_id.as_short_id(),
203-
self.network.into(),
203+
self.network.clone().into(),
204204
network_resource,
205205
)?
206206
else {

0 commit comments

Comments
 (0)