Skip to content

Commit 3d8f93a

Browse files
authored
Update minimarket.move
1 parent 1c39804 commit 3d8f93a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

minimarket/sources/minimarket.move

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ module minimarket::minimarket {
137137
if (!found) { 0 } else { vector::borrow(&m.balances, idx).amount }
138138
}
139139

140-
/// DEMO: init -> list -> buy -> withdraw_fees -> assert balance
141-
public entry fun entry_demo(s: &signer) {
140+
/// DEMO: init -> list -> buy -> withdraw_fees -> assert balance
141+
public entry fun entry_demo(s: &signer) acquires Market {
142142
let admin = signer::address_of(s);
143143
// 2.5% комиссия
144144
init(s, 250);

0 commit comments

Comments
 (0)