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