Skip to content

Commit 425e84c

Browse files
committed
Adjust some comments and code
1 parent 31685be commit 425e84c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/main/kotlin/com/casper/sdk/putdeploy/PutDeployRPC.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ class PutDeployRPC {
7777
} else {
7878
val putDeployResult: PutDeployResult =
7979
PutDeployResult.fromJsonObjectToPutDeployResult(json.get("result") as JsonObject)
80-
println("Put deploy successfull with deploy hash:" + putDeployResult.deployHash)
8180
putDeployCounter = 0
8281
return putDeployResult.deployHash
8382
}

src/test/kotlin/com/casper/sdk/putdeploy/PutDeployRPCTest.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,11 @@ internal class PutDeployRPCTest {
2323
//Positive path - put deploy for ed25519 account
2424
//Use this account 0152a685e0edd9060da4a0d52e500d65e21789df3cbfcb878c91ffeaea756d1c53
2525
val deployHashEd25519 = testPutDeploy(isEd25519 = true)
26+
println("Put deploy successfull with deploy hash Ed25519:" + deployHashEd25519);
2627
//Positive path - put deploy for secp256k1 account
2728
//Use this account 0202d3de886567b1281eaa5687a85e14b4f2922e19b89a3f1014c7932f442c9d9635
2829
val deployHashSecp256k1 = testPutDeploy(isEd25519 = false)
30+
println("Put deploy successfull with deploy hash Secp256k1:" + deployHashSecp256k1);
2931
assert(deployHashEd25519.length > 0)
3032
assert(deployHashSecp256k1.length > 0)
3133
//Negative path 1 - put deploy with wrong deploy hash - for ed25519 account

0 commit comments

Comments
 (0)