Add public field 'memo' to JSOutput to enable creation of notes with custom memos.
This commit is contained in:
@@ -214,11 +214,8 @@ public:
|
||||
ZCNoteEncryption encryptor(h_sig);
|
||||
|
||||
for (size_t i = 0; i < NumOutputs; i++) {
|
||||
// TODO: expose memo in the public interface
|
||||
// 0xF6 is invalid UTF8 as per spec
|
||||
boost::array<unsigned char, ZC_MEMO_SIZE> memo = {{0xF6}};
|
||||
|
||||
NotePlaintext pt(out_notes[i], memo);
|
||||
NotePlaintext pt(out_notes[i], outputs[i].memo);
|
||||
|
||||
out_ciphertexts[i] = pt.encrypt(encryptor, outputs[i].addr.pk_enc);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user