This repository was archived by the owner on Mar 2, 2022. It is now read-only.
File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ export default defineComponent({
84
84
};
85
85
},
86
86
computed: {
87
- ... mapState ([" ourSecretKey" , " decryptedMessage " ]),
87
+ ... mapState ([" ourSecretKey" , " executionToken " ]),
88
88
... mapGetters ([" enclavePublicKey" ])
89
89
},
90
90
methods: {
@@ -119,7 +119,7 @@ export default defineComponent({
119
119
}
120
120
},
121
121
watch: {
122
- decryptedMessage (newState : string | null ) {
122
+ executionToken (newState : string | null ) {
123
123
if (newState ) {
124
124
this .handleMsgDisplay (newState );
125
125
}
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export interface State {
19
19
ourSecretKey : Base64 | null ;
20
20
attestationResult : AttestationToken | null ;
21
21
uploadResult : { accessKey : string ; uuid : Uint8Array } | null ;
22
- decryptedMessage : string | null ;
22
+ executionToken : Uint8Array | null ;
23
23
}
24
24
25
25
// TODO: add typescript typings for Vuex
@@ -31,7 +31,7 @@ export default createStore<State>({
31
31
ourSecretKey : null ,
32
32
attestationResult : null ,
33
33
uploadResult : null ,
34
- decryptedMessage : null
34
+ executionToken : null
35
35
} ,
36
36
getters : {
37
37
enclavePublicKey ( state ) {
@@ -59,7 +59,7 @@ export default createStore<State>({
59
59
state . uploadResult = uploadResult ;
60
60
} ,
61
61
setDecryptedMsg ( state , msg ) {
62
- state . decryptedMessage = msg ;
62
+ state . executionToken = msg ;
63
63
}
64
64
} ,
65
65
actions : {
You can’t perform that action at this time.
0 commit comments