Allow zero balance in block_create for state block sends (#817)
This commit is contained in:
parent
7ff4395b0d
commit
9499c041e4
1 changed files with 1 additions and 1 deletions
|
@ -1238,7 +1238,7 @@ void rai::rpc_handler::block_create ()
|
|||
}
|
||||
if (type == "state")
|
||||
{
|
||||
if (previous_text.is_initialized () && !representative.is_zero () && !balance.is_zero () && (!link.is_zero () || link_text.is_initialized ()))
|
||||
if (previous_text.is_initialized () && !representative.is_zero () && (!link.is_zero () || link_text.is_initialized ()))
|
||||
{
|
||||
if (work == 0)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue