We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4b9c261 + 3f64f61 commit 9660f7eCopy full SHA for 9660f7e
Sources/Core/EthereumABI/ABIDecoding.swift
@@ -85,7 +85,7 @@ extension ABIDecoder {
85
let length = UInt64(BigUInt(dataSlice))
86
guard elementItself.count >= 32+length else {break}
87
dataSlice = elementItself[32 ..< 32 + length]
88
- return (dataSlice as AnyObject, type.memoryUsage)
+ return (dataSlice as AnyObject, nextElementPointer)
89
case .array(type: let subType, length: let length):
90
switch type.arraySize {
91
case .dynamicSize:
0 commit comments