Skip to content

Commit a109ef2

Browse files
[NONEVM-4924] [Offramp] ReceiveExecutor_Bounced should be bounce false (#735)
1 parent 695b6c3 commit a109ef2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

contracts/contracts/ccip/offramp/contract.tolk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ fun onBouncedRouterRouteMessage(msg: Router_RouteMessage, senderAddress: address
218218

219219
// Send ReceiveBounced to initiate the failure notification trace
220220
val receiveBounced = createMessage({
221-
bounce: true,
221+
bounce: false,
222222
value: 0,
223223
dest: getReceiverExecutorDeployAddress(st, msg.execId),
224224
body: ReceiveExecutor_Bounced{
@@ -271,7 +271,7 @@ fun onBouncedCCIPReceive(msg: OffRamp_CCIPReceiveBounced) {
271271
val st = Storage.load();
272272

273273
val receiveBounced = createMessage({
274-
bounce: true,
274+
bounce: false,
275275
value: 0,
276276
dest: getReceiverExecutorDeployAddress(st, msg.execId),
277277
body: ReceiveExecutor_Bounced{
@@ -418,7 +418,7 @@ fun onDispatchValidated(st: Storage, msg: OffRamp_DispatchValidated) {
418418

419419
fun blockMsg(st: Storage, execId: uint192, receiver: address) {
420420
val receiveBounced = createMessage({
421-
bounce: true,
421+
bounce: false,
422422
value: 0,
423423
dest: getReceiverExecutorDeployAddress(st, execId),
424424
body: ReceiveExecutor_Bounced{

0 commit comments

Comments
 (0)