File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
hermes/apps/athena/modules/auth Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ rand = "0.8.5"
1818serde_json = " 1.0.142"
1919serde = " 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 ]
2626test-case = " 3.3.1"
Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments