File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -37,12 +37,13 @@ firstly {
37
37
print (coinbase.first ! .txid )
38
38
// "5b824f055bc4ea8763a817bd951c53f38f81d3c4f2066c6eee79acbad2819db7"
39
39
}.catch { err in
40
- debugPrint (err)
40
+ print (err)
41
41
}
42
42
```
43
43
44
44
### Configuration
45
- The preferred configuration method is to set ` CORERPC_USER ` and ` CORERPC_PASS ` environment variables.
45
+ The preferred configuration method is to set ` CORERPC_USER ` and ` CORERPC_PASS ` environment variables.
46
+
46
47
If found, they will be inserted into the given URL.
47
48
48
49
It is also possible to pass a fully formed URL, such as ` http://username:password@localhost:8332 ` .
@@ -86,9 +87,9 @@ firstly {
86
87
}.then { hash in
87
88
rpc.getVerboseBlock (hash : hash)
88
89
}.done { block in
89
- debugPrint (" Tx count: \( block.tx .count ) " )
90
+ print (" Tx count: \( block.tx .count ) " )
90
91
}.catch { error in
91
- debugPrint (error)
92
+ print (error)
92
93
}
93
94
```
94
95
You can’t perform that action at this time.
0 commit comments