Skip to content

Commit f8cd851

Browse files
authored
Update escrow.move
1 parent 59d9767 commit f8cd851

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

escrow/sources/escrow.move

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ module Escrow::escrow {
6161
let Deal { buyer: _, seller: _, amount: _, funded: _, completed: _ } = d;
6262
}
6363

64-
/// Публичные обёртки для юнит-тестов
65-
#[test_only]
66-
public fun destroy_wallet_for_test(w: Wallet) { destroy_wallet(w); }
64+
// Публичные обёртки для юнит-тестов
65+
#[test_only]
66+
public fun destroy_wallet_for_test(w: Wallet) { destroy_wallet(w); }
6767

68-
#[test_only]
69-
public fun destroy_deal_for_test(d: Deal) { destroy_deal(d); }
68+
#[test_only]
69+
public fun destroy_deal_for_test(d: Deal) { destroy_deal(d); }
7070

71-
/// DEMO entry: депозит → фандинг → релиз
72-
public entry fun entry_demo(_s: &signer) {
71+
/// DEMO entry: депозит → фандинг → релиз
72+
public entry fun entry_demo(_s: &signer) {
7373
let bw = new_wallet();
7474
let sw = new_wallet();
7575

0 commit comments

Comments
 (0)