File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ use arm_risc0::logic_instance::{AppData, ExpirableBlob};
77use arm_risc0:: logic_proof:: LogicVerifierInputs ;
88use arm_risc0:: proving_system:: encode_seal;
99
10- use arm_risc0:: transaction:: { Delta , Transaction } ;
10+ use arm_risc0:: transaction:: { Delta as ArmDelta , Transaction } ;
1111use arm_risc0:: utils:: words_to_bytes;
1212
1313sol ! (
@@ -120,8 +120,8 @@ impl From<Action> for ProtocolAdapter::Action {
120120impl From < Transaction > for ProtocolAdapter :: Transaction {
121121 fn from ( tx : Transaction ) -> Self {
122122 let delta_proof = match & tx. delta_proof {
123- Delta :: Witness ( _) => panic ! ( "Unbalanced Transactions cannot be converted" ) ,
124- Delta :: Proof ( proof) => proof. to_bytes ( ) . to_vec ( ) ,
123+ ArmDelta :: Witness ( _) => panic ! ( "Unbalanced Transactions cannot be converted" ) ,
124+ ArmDelta :: Proof ( proof) => proof. to_bytes ( ) . to_vec ( ) ,
125125 } ;
126126
127127 Self {
You can’t perform that action at this time.
0 commit comments