Skip to content

Commit 5adb270

Browse files
authored
Update CreateTokenDemo.java
Signed-off-by: SimiHunjan <simi.hunjan.k@gmail.com>
1 parent 6d91a7b commit 5adb270

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/examples/java/CreateTokenDemo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
public class CreateTokenDemo {
1111
public static void main(String[] args ) throws Exception {
1212
// .env-provided
13-
String operatorId = AccountId.fromString(System.getenv("OPERATOR_ID"));
14-
String operatorKey = PrivateKey.fromString(System.getenv("OPERATOR_KEY"));
13+
AccountId operatorId = AccountId.fromString(System.getenv("OPERATOR_ID"));
14+
PrivateKey operatorKey = PrivateKey.fromString(System.getenv("OPERATOR_KEY"));
1515
String network = System.getenv().getOrDefault("HEDERA_NETWORK", "local"); // "local" for Solo
1616
String mirrorNode = System.getenv().getOrDefault(
1717
"MIRROR_NODE_URL",

0 commit comments

Comments
 (0)