Skip to content

Commit ce8d35c

Browse files
committed
chore(abstract-eth): keep signature hex prefixed
ticket: HSM-746
1 parent bdbfc44 commit ce8d35c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/abstract-eth/src/lib/transferBuilder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export class TransferBuilder {
126126

127127
setSignature(signature: string): TransferBuilder {
128128
this._signKey = null;
129-
this._signature = signature;
129+
this._signature = ethUtil.addHexPrefix(signature);
130130
return this;
131131
}
132132

0 commit comments

Comments
 (0)