From 6a05365d7a05ea5fc5d04f5b82dfe6b9337feb31 Mon Sep 17 00:00:00 2001 From: Shane Vitarana Date: Tue, 23 Nov 2021 21:04:37 -0500 Subject: [PATCH] Add ParseReplyError to cw0 lib --- packages/cw0/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/cw0/src/lib.rs b/packages/cw0/src/lib.rs index 466efb8c7..939599c00 100644 --- a/packages/cw0/src/lib.rs +++ b/packages/cw0/src/lib.rs @@ -11,6 +11,7 @@ pub use pagination::{ pub use parse_reply::{ parse_execute_response_data, parse_instantiate_response_data, parse_reply_execute_data, parse_reply_instantiate_data, MsgExecuteContractResponse, MsgInstantiateContractResponse, + ParseReplyError, }; pub use payment::{may_pay, must_pay, nonpayable, one_coin, PaymentError};