Commit 8ea4e5d8 authored by yann300's avatar yann300

fix bytes type name

parent c519a35d
...@@ -3,7 +3,7 @@ var ValueType = require('./ValueType') ...@@ -3,7 +3,7 @@ var ValueType = require('./ValueType')
class FixedByteArray extends ValueType { class FixedByteArray extends ValueType {
constructor (storageBytes) { constructor (storageBytes) {
super(1, storageBytes, 'bytesX') super(1, storageBytes, 'bytes' + storageBytes)
} }
decodeValue (value) { decodeValue (value) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment