package com.luminiasoft.bitshares; import com.luminiasoft.bitshares.interfaces.ByteSerializable; /** * Created by nelson on 11/9/16. */ public class Memo implements ByteSerializable { //TODO: Give this class a proper implementation @Override public byte[] toBytes() { return new byte[1]; } }