github.com/okex/exchain@v1.8.0/libs/ibc-go/proto/ibc/applications/fee/v1/ack.proto (about)

     1  syntax = "proto3";
     2  
     3  package ibc.applications.fee.v1;
     4  
     5  option go_package = "github.com/cosmos/ibc-go/v4/modules/apps/29-fee/types";
     6  
     7  import "gogoproto/gogo.proto";
     8  
     9  // IncentivizedAcknowledgement is the acknowledgement format to be used by applications wrapped in the fee middleware
    10  message IncentivizedAcknowledgement {
    11    // the underlying app acknowledgement bytes
    12    bytes app_acknowledgement = 1 [(gogoproto.moretags) = "yaml:\"app_acknowledgement\""];
    13    // the relayer address which submits the recv packet message
    14    string forward_relayer_address = 2 [(gogoproto.moretags) = "yaml:\"forward_relayer_address\""];
    15    // success flag of the base application callback
    16    bool underlying_app_success = 3 [(gogoproto.moretags) = "yaml:\"underlying_app_successl\""];
    17  }