Skip to content

Commit 1b4ce13

Browse files
Delete last print() functions.
1 parent 5e61fcc commit 1b4ce13

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

Tests/web3swiftTests/localTests/LocalTestCase.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ class LocalTestCase: XCTestCase {
1818
let block = try await web3.eth.blockNumber()
1919
guard block < 25 else { return }
2020

21-
print("\n ****** Preloading Ganache (\(25 - block) blocks) *****\n")
22-
2321
let allAddresses = try! await web3.eth.ownedAccounts()
2422
let sendToAddress = allAddresses[0]
2523
let contract = web3.contract(Web3.Utils.coldWalletABI, at: sendToAddress, abiVersion: 2)

Tests/web3swiftTests/localTests/NumberFormattingUtilTests.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class NumberFormattingUtilTests: LocalTestCase {
1414

1515
func testNumberFormattingUtil() throws {
1616
let balance = BigInt("-1000000000000000000")
17-
print("this is print")
1817
let formatted = Utilities.formatToPrecision(balance, units: .ether, formattingDecimals: 4, decimalSeparator: ",")
1918
XCTAssert(formatted == "-1")
2019
}

0 commit comments

Comments
 (0)