File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
integration-tests/solidity-abi Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ std = [
3333 " scale-info/std" ,
3434 " frame-support/std" ,
3535 " ink_primitives/std" ,
36- # "sp-weights/std",
3736 " sp-core/std" ,
3837 " sp-runtime/std" ,
3938 " serde/std" ,
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ use ink::{
1212 SolEncode ,
1313 primitives:: DepositLimit ,
1414} ;
15- use ink_sandbox:: frame_system:: pallet_prelude:: OriginFor ;
1615use ink_revive:: ExecReturnValue ;
16+ use ink_sandbox:: frame_system:: pallet_prelude:: OriginFor ;
1717
1818const STORAGE_DEPOSIT_LIMIT : DepositLimit < u128 > = DepositLimit :: UnsafeOnlyForDryRun ;
1919
@@ -175,7 +175,7 @@ impl ContractSandbox {
175175 let call_raw = result. result . expect ( "sandbox call contract failed" ) ;
176176 ExecReturnValue {
177177 flags : call_raw. flags ,
178- data : call_raw. data
178+ data : call_raw. data ,
179179 }
180180 }
181181}
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ use ink::{
66 primitives:: DepositLimit ,
77} ;
88use ink_e2e:: ContractsRegistry ;
9+ use ink_revive:: ExecReturnValue ;
910use ink_sandbox:: {
1011 DefaultSandbox ,
1112 Sandbox ,
1213 api:: prelude:: * ,
1314 frame_system:: pallet_prelude:: OriginFor ,
1415} ;
15- use ink_revive:: ExecReturnValue ;
1616
1717const STORAGE_DEPOSIT_LIMIT : DepositLimit < u128 > = DepositLimit :: UnsafeOnlyForDryRun ;
1818
@@ -127,7 +127,7 @@ impl ContractSandbox {
127127 . expect ( "sandbox call contract failed" ) ;
128128 ExecReturnValue {
129129 flags : call_raw. flags ,
130- data : call_raw. data
130+ data : call_raw. data ,
131131 }
132132 }
133133}
You can’t perform that action at this time.
0 commit comments