From 0faf824a0b522f5d1758569d000374acfca1f006 Mon Sep 17 00:00:00 2001 From: Georges Chouchani <73434909+gachouchani1999@users.noreply.github.com> Date: Tue, 28 Jun 2022 17:03:44 +0300 Subject: [PATCH] Update cw20/escrow/src/contract.rs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Augusto Elesbão --- cw20/escrow/src/contract.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cw20/escrow/src/contract.rs b/cw20/escrow/src/contract.rs index 56276c2..251f09b 100644 --- a/cw20/escrow/src/contract.rs +++ b/cw20/escrow/src/contract.rs @@ -15,7 +15,7 @@ use crate::msg::{ use crate::state::{all_escrow_ids, Escrow, GenericBalance, ESCROWS}; // version info for migration info -const CONTRACT_NAME: &str = "crates.io:cw20-escrow"; +const CONTRACT_NAME: &str = "crates.io:{{project-name}}"; const CONTRACT_VERSION: &str = env!("CARGO_PKG_VERSION"); #[cfg_attr(not(feature = "library"), entry_point)]