File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
main/kotlin/com/casper/sdk/putdeploy
test/kotlin/com/casper/sdk/putdeploy Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments