Skip to content

Commit

Permalink
fixup! [M] Add GlobalTransactionState and PendingEthereumTransaction …
Browse files Browse the repository at this point in the history
…models
  • Loading branch information
kbeker committed Jul 13, 2018
1 parent b10c7be commit 5fef383
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 43 deletions.

This file was deleted.

10 changes: 5 additions & 5 deletions concent_api/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -545,18 +545,18 @@ class PendingEthereumTransaction(Model):
Represents pending Ethereum transaction state.
"""

nonce = DecimalField(max_digits=32, decimal_places=0)
nonce = DecimalField(max_digits=64, decimal_places=0)

gasprice = DecimalField(max_digits=32, decimal_places=0)
startgas = DecimalField(max_digits=32, decimal_places=0)
gasprice = DecimalField(max_digits=64, decimal_places=0)
startgas = DecimalField(max_digits=64, decimal_places=0)
value = IntegerField()

to = BinaryField(max_length=20)
data = BinaryField()

v = IntegerField()
r = DecimalField(max_digits=128, decimal_places=0)
s = DecimalField(max_digits=128, decimal_places=0)
r = DecimalField(max_digits=64, decimal_places=0)
s = DecimalField(max_digits=64, decimal_places=0)

created_at = DateTimeField(auto_now_add=True)

Expand Down

0 comments on commit 5fef383

Please sign in to comment.