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 = [
33
33
" scale-info/std" ,
34
34
" frame-support/std" ,
35
35
" ink_primitives/std" ,
36
- # "sp-weights/std",
37
36
" sp-core/std" ,
38
37
" sp-runtime/std" ,
39
38
" serde/std" ,
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ use ink::{
12
12
SolEncode ,
13
13
primitives:: DepositLimit ,
14
14
} ;
15
- use ink_sandbox:: frame_system:: pallet_prelude:: OriginFor ;
16
15
use ink_revive:: ExecReturnValue ;
16
+ use ink_sandbox:: frame_system:: pallet_prelude:: OriginFor ;
17
17
18
18
const STORAGE_DEPOSIT_LIMIT : DepositLimit < u128 > = DepositLimit :: UnsafeOnlyForDryRun ;
19
19
@@ -175,7 +175,7 @@ impl ContractSandbox {
175
175
let call_raw = result. result . expect ( "sandbox call contract failed" ) ;
176
176
ExecReturnValue {
177
177
flags : call_raw. flags ,
178
- data : call_raw. data
178
+ data : call_raw. data ,
179
179
}
180
180
}
181
181
}
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ use ink::{
6
6
primitives:: DepositLimit ,
7
7
} ;
8
8
use ink_e2e:: ContractsRegistry ;
9
+ use ink_revive:: ExecReturnValue ;
9
10
use ink_sandbox:: {
10
11
DefaultSandbox ,
11
12
Sandbox ,
12
13
api:: prelude:: * ,
13
14
frame_system:: pallet_prelude:: OriginFor ,
14
15
} ;
15
- use ink_revive:: ExecReturnValue ;
16
16
17
17
const STORAGE_DEPOSIT_LIMIT : DepositLimit < u128 > = DepositLimit :: UnsafeOnlyForDryRun ;
18
18
@@ -127,7 +127,7 @@ impl ContractSandbox {
127
127
. expect ( "sandbox call contract failed" ) ;
128
128
ExecReturnValue {
129
129
flags : call_raw. flags ,
130
- data : call_raw. data
130
+ data : call_raw. data ,
131
131
}
132
132
}
133
133
}
You can’t perform that action at this time.
0 commit comments