From 5cee47da49f5db568b6958939b6c00fc59f5f403 Mon Sep 17 00:00:00 2001 From: Alberto Sala Date: Tue, 28 Sep 2021 16:36:26 +0200 Subject: [PATCH] Fix py tests after rebase --- qa/rpc-tests/sc_create.py | 2 +- qa/rpc-tests/sc_create_2.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/rpc-tests/sc_create.py b/qa/rpc-tests/sc_create.py index f666ed5ba..5095d52e6 100755 --- a/qa/rpc-tests/sc_create.py +++ b/qa/rpc-tests/sc_create.py @@ -310,7 +310,7 @@ def run_test(self): mark_logs("\nNode 1 try creating a SC with epochLength that is over the max limit", self.nodes, DEBUG_MODE) try: - self.nodes[1].sc_create(4033, "ada", Decimal("1.0"), vk, "aa" * SC_FIELD_SIZE) + self.nodes[1].dep_sc_create(4033, "ada", Decimal("1.0"), vk, "aa" * SC_FIELD_SIZE) assert(True) except JSONRPCException, e: errorString = e.error['message'] diff --git a/qa/rpc-tests/sc_create_2.py b/qa/rpc-tests/sc_create_2.py index 99e5670e1..686aa684c 100755 --- a/qa/rpc-tests/sc_create_2.py +++ b/qa/rpc-tests/sc_create_2.py @@ -144,7 +144,7 @@ def run_test(self): mark_logs("\nNode 1 create SC with a null epoch length in input", self.nodes, DEBUG_MODE) try: - self.nodes[1].create_sidechain(cmdInput) + self.nodes[1].sc_create(cmdInput) assert_true(False); except JSONRPCException, e: errorString = e.error['message']