Is there a reason a blank key is allowed in a stream

+1 vote
I am currently testing streams to insert data and I managed to insert a blank key, should this be allowed? This is the output from listkeys

    },
    {
        "key" : "",
        "items" : 3,
        "confirmed" : 3
    }
]
asked Feb 14, 2018 by mrblocky

1 Answer

0 votes
Yes, there is no problem with having a blank key. The empty string is a valid string.
answered Feb 14, 2018 by MultiChain
...