We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c4b7ae commit d19010aCopy full SHA for d19010a
Tests/web3swiftTests/localTests/LocalTestCase.swift
@@ -26,10 +26,10 @@ class LocalTestCase: XCTestCase {
26
27
let from = allAddresses[0]
28
let writeTX = contract!.write("fallback")!
29
- writeTX.transactionOptions.from = from
30
- writeTX.transactionOptions.value = value
31
- writeTX.transactionOptions.gasLimitPolicy = .manual(78423)
32
- writeTX.transactionOptions.gasPricePolicy = .manual(20000000000)
+ writeTX.transaction.from = from
+ writeTX.transaction.value = value
+ writeTX.transaction.gasLimitPolicy = .manual(78423)
+ writeTX.transaction.gasPricePolicy = .manual(20000000000)
33
34
for _ in block..<25 {
35
let _ = try! await writeTX.send(password: "")
0 commit comments