Remove bytes() coercion for OrchardNotePlaintext.rseed

Co-authored-by: Jack Grigg <jack@electriccoin.co>
This commit is contained in:
therealyingtong 2021-05-26 14:32:17 +08:00
parent c182edabd4
commit cbf2e840b9
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class OrchardNotePlaintext(object):
self.leadbyte +
self.d +
struct.pack('<Q', self.v) +
bytes(self.rseed) +
self.rseed +
self.memo
)