From 172bf513341154a43041a169151794c8cfcaf413 Mon Sep 17 00:00:00 2001 From: alnoki <43892045+alnoki@users.noreply.github.com> Date: Fri, 17 Nov 2023 16:12:42 -0800 Subject: [PATCH] [Coverage] Comment out inline for coverage testing https://github.com/aptos-labs/aptos-core/issues/9154 --- src/move/econia/sources/market.move | 2 +- src/move/econia/sources/user.move | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/move/econia/sources/market.move b/src/move/econia/sources/market.move index 639707072..d9a44dddf 100644 --- a/src/move/econia/sources/market.move +++ b/src/move/econia/sources/market.move @@ -2917,7 +2917,7 @@ module econia::market { /// /// * `Option`: An optional cancel reason, if the order needs /// to be cancelled. - inline fun get_cancel_reason_option_for_market_order_or_swap( + /*inline*/ fun get_cancel_reason_option_for_market_order_or_swap( self_match_taker_cancel: bool, base_traded: u64, max_base: u64, diff --git a/src/move/econia/sources/user.move b/src/move/econia/sources/user.move index 0cc839dff..d8d6331df 100644 --- a/src/move/econia/sources/user.move +++ b/src/move/econia/sources/user.move @@ -2864,7 +2864,7 @@ module econia::user { /// Emit a `FillEvent` for the market account of the maker /// associated with a fill, if market event handles exist for the /// indicated market account. - inline fun emit_maker_fill_event( + /*inline*/ fun emit_maker_fill_event( event_ref: &FillEvent ) acquires MarketEventHandles { let maker = event_ref.maker;