Skip to content

Commit

Permalink
print errors
Browse files Browse the repository at this point in the history
  • Loading branch information
HrikB committed Jun 8, 2024
1 parent dbbb43a commit 0a40a03
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/AxiomVm.sol
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,8 @@ contract AxiomVm is Test {
mockQuery[12] = vm.toString(msg.sender);

bytes memory axiomOutput1 = vm.ffi(mockQuery);
(,, string memory build1) = abi.decode(axiomOutput1, (string, string, string));
(, string memory errors, string memory build1) = abi.decode(axiomOutput1, (string, string, string));
console.log(errors);
compiledStrings[querySchema] = build1;
output = build1;
}
Expand Down

0 comments on commit 0a40a03

Please sign in to comment.