File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -292,7 +292,7 @@ extension EthereumTransaction {
292
292
case . manual( let value) :
293
293
self . gasPrice = value
294
294
default :
295
- self . gasPrice = BigUInt ( UInt64 ( 5000000000 ) )
295
+ self . gasPrice = BigUInt ( " 5000000000 " ) !
296
296
}
297
297
}
298
298
@@ -318,7 +318,7 @@ extension EthereumTransaction {
318
318
case . manual( let value) :
319
319
tx. gasPrice = value
320
320
default :
321
- tx. gasPrice = BigUInt ( UInt64 ( 5000000000 ) )
321
+ tx. gasPrice = BigUInt ( " 5000000000 " ) !
322
322
}
323
323
}
324
324
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ extension EthereumTransaction: Decodable {
151
151
case . manual( let value) :
152
152
self . gasPrice = value
153
153
default :
154
- self . gasPrice = BigUInt ( 5000000000 )
154
+ self . gasPrice = BigUInt ( " 5000000000 " ) !
155
155
}
156
156
}
157
157
You can’t perform that action at this time.
0 commit comments