Skip to content

Commit

Permalink
fix: export cvToValue function
Browse files Browse the repository at this point in the history
  • Loading branch information
reedrosenbluth committed Feb 16, 2021
1 parent 201a75c commit 835e68e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/transactions/src/clarity/clarityValue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export function cvToString(val: ClarityValue, encoding: 'tryAscii' | 'hex' = 'he
}
}

function cvToValue(val: ClarityValue): any {
export function cvToValue(val: ClarityValue): any {
switch (val.type) {
case ClarityType.BoolTrue:
return true;
Expand Down

0 comments on commit 835e68e

Please sign in to comment.