Skip to content

Commit

Permalink
Merge pull request #14 from sprotest/feature/fix-web3-method-fromAscii
Browse files Browse the repository at this point in the history
feature/fix-web3-method-fromAscii
  • Loading branch information
tafonina authored Jun 13, 2023
2 parents 9bfb0ac + 9d3d6a2 commit 029ab3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/core/src/views/DocumentFlow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ export default {
this.wallet.proxeusFS.createFileUndefinedSigners({
from: account,
hash,
data: (this.data === '' ? '0x00' : web3.fromAscii(this.data)),
data: (this.data === '' ? '0x00' : web3.utils.asciiToHex(this.data)),
mandatorySigners: 0,
expiry: 0,
providers: [],
Expand Down

0 comments on commit 029ab3e

Please sign in to comment.