From f88a7682dd962b2592e84a69385ebd68d3ced3e2 Mon Sep 17 00:00:00 2001 From: Daniel Larimer Date: Fri, 19 Jun 2015 16:21:47 -0400 Subject: [PATCH] cheap names must have a number, dot, dash or slash --- libraries/chain/operations.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/chain/operations.cpp b/libraries/chain/operations.cpp index 157df651..c8f8dbb3 100644 --- a/libraries/chain/operations.cpp +++ b/libraries/chain/operations.cpp @@ -115,7 +115,7 @@ share_type account_create_operation::calculate_fee( const fee_schedule_type& sch FC_ASSERT( s >= 2 ); - if( s == 8 ) + if( s >= 8 && s < 63 ) core_fee_required = schedule.account_len8_fee; else if( s == 7 ) core_fee_required = schedule.account_len7_fee;