Skip to content

Commit

Permalink
mock: specify visibility explicitly
Browse files Browse the repository at this point in the history
Signed-off-by: Jun Kimura <[email protected]>
  • Loading branch information
bluele committed Oct 10, 2023
1 parent baf0405 commit 035d8c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/apps/mock/IBCMockLib.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
pragma solidity ^0.8.9;

library IBCMockLib {
bytes constant MOCK_PACKET_DATA = bytes("mock packet data");
bytes constant MOCK_FAIL_PACKET_DATA = bytes("mock failed packet data");
bytes constant MOCK_ASYNC_PACKET_DATA = bytes("mock async packet data");
bytes public constant MOCK_PACKET_DATA = bytes("mock packet data");
bytes public constant MOCK_FAIL_PACKET_DATA = bytes("mock failed packet data");
bytes public constant MOCK_ASYNC_PACKET_DATA = bytes("mock async packet data");

bytes public constant SUCCESSFUL_ACKNOWLEDGEMENT_JSON = bytes('{"result":"bW9jayBhY2tub3dsZWRnZW1lbnQ="}');
bytes public constant FAILED_ACKNOWLEDGEMENT_JSON = bytes('{"error":"mock failed acknowledgement"}');
Expand Down

0 comments on commit 035d8c8

Please sign in to comment.