From d21ac30f0b56fe67112dae4429ba7fe33be10dc2 Mon Sep 17 00:00:00 2001 From: Shoham Chakraborty Date: Fri, 8 Sep 2023 13:37:56 +0800 Subject: [PATCH] Fix feature_dst20 test (#2433) --- test/functional/feature_dst20.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/functional/feature_dst20.py b/test/functional/feature_dst20.py index 0fc8b94337..f47d15b241 100755 --- a/test/functional/feature_dst20.py +++ b/test/functional/feature_dst20.py @@ -187,8 +187,9 @@ def test_dst20_migration_txs(self): self.bytecode, ) - assert_equal(tx1["input"], tx2["input"]) - assert_equal(tx2["input"], tx3["input"]) + # init bytecode should match + assert_equal(tx1["input"][:-384], tx2["input"][:-384]) + assert_equal(tx2["input"][:-384], tx3["input"][:-384]) self.rollback_to(block_height)