From 564981fb4c5b12f954cea6f81b686c776372fadd Mon Sep 17 00:00:00 2001 From: QuickMythril Date: Sat, 18 May 2024 16:23:22 -0400 Subject: [PATCH] Allow uppercase in poll description --- crypto/api/transactions/polls/CreatePollTransaction.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/api/transactions/polls/CreatePollTransaction.js b/crypto/api/transactions/polls/CreatePollTransaction.js index 07815458..c4af34bb 100644 --- a/crypto/api/transactions/polls/CreatePollTransaction.js +++ b/crypto/api/transactions/polls/CreatePollTransaction.js @@ -74,7 +74,7 @@ export default class CreatePollTransaction extends TransactionBase { set rPollDesc(rPollDesc) { this._rPollDesc = rPollDesc - this._rPollDescBytes = this.constructor.utils.stringtoUTF8Array(this._rPollDesc.toLocaleLowerCase()) + this._rPollDescBytes = this.constructor.utils.stringtoUTF8Array(this._rPollDesc) this._rPollDescLength = this.constructor.utils.int32ToBytes(this._rPollDescBytes.length) }