Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.81 KB | None | 0 0
  1. import collections
  2. import numpy as np
  3.  
  4. pairs = []
  5. Pair = collections.namedtuple('Pair', ['hash', 'gas'])
  6. pairAlls = [('0x034c9e7f28f136188ebb2a2630c26183b3df90c387490159b411cf7326764341', 21000),
  7. (u'0xffda7269775dcd710565c5e0289a2254c195e006f34cafc80c4a3c89f479606e', 1000000),
  8. (u'0x90ca439b7daa648fafee829d145adefa1dc17c064f43db77f573da873b641f19', 90000),
  9. (u'0x7cba9f140ab0b3ec360e0a55c06f75b51c83b2e97662736523c26259a730007f', 40000),
  10. (u'0x92dedff7dab405220c473aefd12e2e41d260d2dff7816c26005f78d92254aba2', 21000)]
  11.  
  12. for k, v in pairAlls:
  13.     a= Pair(k, int(v))
  14.     pairs.append(a)
  15.  
  16. print(min(pairs, key=lambda pair: pair.gas))
  17. print(max(pairs, key=lambda pair: pair.gas))
  18.  
  19. gases = np.array([pair.gas for pair in pairs])
  20. medianGasIndex = np.where( gases == np.median(gases) )[0][0]
  21. print(pairs[medianGasIndex])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement