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 {
292292 case . manual( let value) :
293293 self . gasPrice = value
294294 default :
295- self . gasPrice = BigUInt ( UInt64 ( 5000000000 ) )
295+ self . gasPrice = BigUInt ( " 5000000000 " ) !
296296 }
297297 }
298298
@@ -318,7 +318,7 @@ extension EthereumTransaction {
318318 case . manual( let value) :
319319 tx. gasPrice = value
320320 default :
321- tx. gasPrice = BigUInt ( UInt64 ( 5000000000 ) )
321+ tx. gasPrice = BigUInt ( " 5000000000 " ) !
322322 }
323323 }
324324
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ extension EthereumTransaction: Decodable {
151151 case . manual( let value) :
152152 self . gasPrice = value
153153 default :
154- self . gasPrice = BigUInt ( 5000000000 )
154+ self . gasPrice = BigUInt ( " 5000000000 " ) !
155155 }
156156 }
157157
You can’t perform that action at this time.
0 commit comments