File tree Expand file tree Collapse file tree 4 files changed +33
-8
lines changed Expand file tree Collapse file tree 4 files changed +33
-8
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ use std::{
34
34
sync:: Arc ,
35
35
time:: Duration ,
36
36
} ;
37
+ use std:: { sync:: Arc , time:: Duration } ;
37
38
use sway_core:: language:: parsed:: TreeType ;
38
39
use sway_core:: BuildTarget ;
39
40
@@ -381,7 +382,6 @@ pub async fn deploy_pkg(
381
382
let manifest = & compiled. descriptor . manifest_file ;
382
383
let node_url = provider. url ( ) ;
383
384
let client = FuelClient :: new ( node_url) ?;
384
-
385
385
let bytecode = & compiled. bytecode . bytes ;
386
386
387
387
let mut storage_slots =
Original file line number Diff line number Diff line change @@ -121,13 +121,6 @@ pub(crate) fn secret_key_from_forc_wallet(
121
121
Ok ( secret_key)
122
122
}
123
123
124
- pub ( crate ) fn bech32_from_secret ( secret_key : & SecretKey ) -> Result < Bech32Address > {
125
- let public_key = PublicKey :: from ( secret_key) ;
126
- let hashed = public_key. hash ( ) ;
127
- let bech32 = Bech32Address :: new ( FUEL_BECH32_HRP , hashed) ;
128
- Ok ( bech32)
129
- }
130
-
131
124
pub ( crate ) fn select_manual_secret_key (
132
125
default_signer : bool ,
133
126
signing_key : Option < SecretKey > ,
Original file line number Diff line number Diff line change
1
+ [[package]]
2
+ name = "contract_with_dep"
3
+ source = "member"
4
+ dependencies = ["std"]
5
+ contract-dependencies = ["standalone_contract (0000000000000000000000000000000000000000000000000000000000000001)"]
6
+
7
+ [[package]]
8
+ name = "core"
9
+ source = "path+from-root-9B9D657E3F1FCA11"
10
+
11
+ [[package]]
12
+ name = "standalone_contract"
13
+ source = "path+from-root-9B9D657E3F1FCA11"
14
+ dependencies = ["std"]
15
+
16
+ [[package]]
17
+ name = "std"
18
+ source = "path+from-root-9B9D657E3F1FCA11"
19
+ dependencies = ["core"]
Original file line number Diff line number Diff line change
1
+ [[package]]
2
+ name = "core"
3
+ source = "path+from-root-79BB3EA8498403DE"
4
+
5
+ [[package]]
6
+ name = "standalone_contract"
7
+ source = "member"
8
+ dependencies = ["std"]
9
+
10
+ [[package]]
11
+ name = "std"
12
+ source = "path+from-root-79BB3EA8498403DE"
13
+ dependencies = ["core"]
You can’t perform that action at this time.
0 commit comments