We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d91a7b commit 5adb270Copy full SHA for 5adb270
.github/examples/java/CreateTokenDemo.java
@@ -10,8 +10,8 @@
10
public class CreateTokenDemo {
11
public static void main(String[] args ) throws Exception {
12
// .env-provided
13
- String operatorId = AccountId.fromString(System.getenv("OPERATOR_ID"));
14
- String operatorKey = PrivateKey.fromString(System.getenv("OPERATOR_KEY"));
+ AccountId operatorId = AccountId.fromString(System.getenv("OPERATOR_ID"));
+ PrivateKey operatorKey = PrivateKey.fromString(System.getenv("OPERATOR_KEY"));
15
String network = System.getenv().getOrDefault("HEDERA_NETWORK", "local"); // "local" for Solo
16
String mirrorNode = System.getenv().getOrDefault(
17
"MIRROR_NODE_URL",
0 commit comments