Skip to content

Commit 2bacbbd

Browse files
committed
Uncommented runtime function calls in test
1 parent b4f4457 commit 2bacbbd

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

stdlib/ether/global.flint

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ struct Flint_Global {
33
return Flint_balanceOf_Inner(account)
44
}
55

6-
//public func Flint_transfer(from: Address, to: Address, amount: Int) {
7-
// Flint_transfer_Inner(from, to, amount)
8-
//}
6+
public func Flint_transfer(from: Address, to: Address, amount: Int) {
7+
Flint_transfer_Inner(from, to, amount)
8+
}
99
}

tests/move_tests/runtime_functions.flint

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Money :: caller <- (any) {
77
return Flint_balanceOf(caller)
88
}
99

10-
//public func payZero() {
11-
// Flint_transfer(caller, 0x0, 10)
12-
//}
10+
public func payZero() {
11+
Flint_transfer(caller, 0x0, 10)
12+
}
1313
}

0 commit comments

Comments
 (0)