Skip to content

Commit 265c9d2

Browse files
author
Alex Vlasov
committed
fix gas limit estimation
1 parent 87a2112 commit 265c9d2

File tree

32 files changed

+239
-145
lines changed

32 files changed

+239
-145
lines changed

Podfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ def import_pods
44
pod 'BigInt', '~> 3.0.1'
55
pod 'CryptoSwift'
66
pod 'Result', '~> 3.0.0'
7-
pod 'libsodium'
8-
pod 'secp256k1_ios', :git => 'https://github.com/shamatar/secp256k1_ios.git'
7+
pod 'libsodium', :modular_headers => true
8+
pod 'secp256k1_ios', :git => 'https://github.com/shamatar/secp256k1_ios.git', :modular_headers => true
99
end
1010

1111
target 'web3swift-macOS' do
1212
platform :osx, '10.13'
1313
use_frameworks!
14-
14+
# use_modular_headers!
1515
import_pods
1616

1717
target 'web3swift-macOS_Tests' do
@@ -22,7 +22,7 @@ end
2222
target 'web3swift-iOS' do
2323
platform :ios, '9.0'
2424
use_frameworks!
25-
25+
# use_modular_headers!
2626
import_pods
2727

2828
target 'web3swift-iOS_Tests' do

Podfile.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- Alamofire (4.7.1)
2+
- Alamofire (4.7.2)
33
- Alamofire-Synchronous (4.0.0):
44
- Alamofire (~> 4.0)
55
- BigInt (3.0.1):
@@ -8,7 +8,7 @@ PODS:
88
- libsodium (1.0.12)
99
- Result (3.0.0)
1010
- secp256k1_ios (0.1.3)
11-
- SipHash (1.2.0)
11+
- SipHash (1.2.1)
1212

1313
DEPENDENCIES:
1414
- Alamofire (~> 4.7)
@@ -20,7 +20,7 @@ DEPENDENCIES:
2020
- secp256k1_ios (from `https://github.com/shamatar/secp256k1_ios.git`)
2121

2222
SPEC REPOS:
23-
https://github.com/CocoaPods/Specs.git:
23+
https://github.com/cocoapods/specs.git:
2424
- Alamofire
2525
- Alamofire-Synchronous
2626
- BigInt
@@ -39,15 +39,15 @@ CHECKOUT OPTIONS:
3939
:git: https://github.com/shamatar/secp256k1_ios.git
4040

4141
SPEC CHECKSUMS:
42-
Alamofire: 68d7d521118d49c615a8d2214d87cdf525599d30
42+
Alamofire: e4fa87002c137ba2d8d634d2c51fabcda0d5c223
4343
Alamofire-Synchronous: eedf1e6e961c3795a63c74990b3f7d9fbfac7e50
4444
BigInt: 8e8a52161c745cd3ab78e3dc346a9fbee51e6cf6
4545
CryptoSwift: bca8c5b653dcc2d9734409242a070ff53bafac86
4646
libsodium: 9a8faa5ef2fa0d2d57bd7f7d79bf8fb7c1a9f0ea
4747
Result: 1b3e431f37cbcd3ad89c6aa9ab0ae55515fae3b6
4848
secp256k1_ios: ac9ef04e761f43c58012b28548afa91493761f17
49-
SipHash: c6e9e43e9c531b5bc6602545130c26194a6d31ce
49+
SipHash: b26918dbe6925368d4322374371437c62c9038e2
5050

51-
PODFILE CHECKSUM: 51415aa233dc66b3af6a71d098467d77a2d23a80
51+
PODFILE CHECKSUM: e13ad9f4ec7273a5a0d11848b959afdd2efcf396
5252

53-
COCOAPODS: 1.5.0
53+
COCOAPODS: 1.5.2

Pods/Alamofire/README.md

Lines changed: 10 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/Alamofire/Source/SessionDelegate.swift

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/Alamofire/Source/SessionManager.swift

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/Manifest.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/SipHash/README.md

Lines changed: 20 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/SipHash/SipHash/RandomUInt64.swift

Lines changed: 17 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/Target Support Files/Alamofire-iOS/Info.plist

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/Target Support Files/Alamofire-macOS/Info.plist

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)