Skip to content

Commit c210cfc

Browse files
authored
Merge pull request #510 from algorandfoundation/fix-abi-return-description
fix: abi return description
2 parents 793da03 + ccb6710 commit c210cfc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/abi/src/abi-method.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,8 @@ export function arc56MethodToABIMethod(method: Arc56Method, appSpec: Arc56Contra
249249
: method.returns.struct
250250
? ABIStructType.fromStruct(method.returns.struct, appSpec.structs)
251251
: ABIType.from(method.returns.type),
252-
desc: method.returns.desc,
253-
}
252+
description: method.returns.desc,
253+
} satisfies ABIMethodReturn
254254

255255
return new ABIMethod({
256256
name: method.name,

0 commit comments

Comments
 (0)