From d8e4a9a160419d8ad8bf91d9bcdb91c9eb54484e Mon Sep 17 00:00:00 2001 From: Srdjan Obucina Date: Wed, 9 Oct 2019 19:32:28 +0200 Subject: [PATCH] Fix build error, remove undeclared field --- tests/tests/son_operations_tests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests/son_operations_tests.cpp b/tests/tests/son_operations_tests.cpp index a976a6db..db992544 100644 --- a/tests/tests/son_operations_tests.cpp +++ b/tests/tests/son_operations_tests.cpp @@ -37,7 +37,7 @@ BOOST_AUTO_TEST_CASE( create_son_test ) { op.creator = alice_id; op.owner = alice_id; op.amount = asset(10); - op.balance_type = vesting_balance_type::unspecified; + //op.balance_type = vesting_balance_type::unspecified; trx.operations.push_back(op); set_expiration(db, trx); @@ -52,7 +52,7 @@ BOOST_AUTO_TEST_CASE( create_son_test ) { op.creator = alice_id; op.owner = alice_id; op.amount = asset(10); - op.balance_type = vesting_balance_type::unspecified; + //op.balance_type = vesting_balance_type::unspecified; trx.operations.push_back(op); set_expiration(db, trx);