Skip to content

Commit

Permalink
PR Feedback Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mvpoyatt committed Sep 23, 2024
1 parent 9b040f1 commit ed0c7ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions contracts/examples/Earth.sol
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ contract Earth is IbcUniversalPacketReceiverBase {
* @param channelId The channel ID.
* @param packet The universal packet.
* @return ackPacket The acknowledgement packet.
* @return skipAck Whether to skip the writeAck event.
* @dev It's recommended to always validate the authorized channel of any packet or channel using the
* onlyAuthorizedChannel modifier.
*/
Expand Down
1 change: 1 addition & 0 deletions contracts/examples/Mars.sol
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ contract Mars is IbcReceiverBase, IbcReceiver, FeeSender {
* @notice Callback for receiving a packet; triggered when a counterparty sends an an IBC packet
* @param packet The IBC packet received
* @return ackPacket The acknowledgement packet generated in response
* @return skipAck Whether to skip the writeAck event.
* @dev Make sure to validate packet's source and destiation channels and ports.
*/
function onRecvPacket(IbcPacket memory packet)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@open-ibc/vibc-core-smart-contracts",
"version": "3.0.6",
"version": "4.0.0",
"main": "dist/index.js",
"bin": {
"verify-vibc-core-smart-contracts": "./dist/scripts/verify-contract-script.js",
Expand Down

0 comments on commit ed0c7ee

Please sign in to comment.