From 19e50eb35f2a53809d36925e65fd05d440314589 Mon Sep 17 00:00:00 2001 From: Norman Meier Date: Wed, 13 Mar 2024 16:00:14 +0100 Subject: [PATCH] chore: clean escrow package Signed-off-by: Norman Meier --- examples/gno.land/r/demo/teritori/escrow/escrow.gno | 2 +- examples/gno.land/r/demo/teritori/escrow/gno.mod | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/gno.land/r/demo/teritori/escrow/escrow.gno b/examples/gno.land/r/demo/teritori/escrow/escrow.gno index 4d1566a976a..4c601daa841 100644 --- a/examples/gno.land/r/demo/teritori/escrow/escrow.gno +++ b/examples/gno.land/r/demo/teritori/escrow/escrow.gno @@ -6,7 +6,7 @@ import ( fmt "gno.land/p/demo/ufmt" "gno.land/r/demo/foo20" - "gno.land/r/demo/users" + "gno.land/p/demo/users" ) type Config struct { diff --git a/examples/gno.land/r/demo/teritori/escrow/gno.mod b/examples/gno.land/r/demo/teritori/escrow/gno.mod index 08d27ca4e65..3a3a24d36fd 100644 --- a/examples/gno.land/r/demo/teritori/escrow/gno.mod +++ b/examples/gno.land/r/demo/teritori/escrow/gno.mod @@ -1,7 +1,7 @@ module gno.land/r/demo/teritori/escrow require ( - "gno.land/p/demo/ufmt" v0.0.0-latest - "gno.land/r/demo/foo20" v0.0.0-latest - "gno.land/r/demo/users" v0.0.0-latest -) \ No newline at end of file + gno.land/p/demo/ufmt v0.0.0-latest + gno.land/p/demo/users v0.0.0-latest + gno.land/r/demo/foo20 v0.0.0-latest +)