removed fmt prints

This commit is contained in:
Dustin Brickwood 2018-04-23 10:47:57 -04:00
parent 42301b32cc
commit 048883c09a

View file

@ -15,14 +15,4 @@ CREATE TABLE IF NOT EXISTS txs (
nonce numeric,
data bytea,
block text references blocks(hash)
);
TxHash: tx.Hash(),
From: tx.From(),
To: tx.To(),
BlockHash: blockHash.Hex(),
Amount: tx.Value(),
GasPrice: tx.GasPrice(),
Gas: tx.Gas(),
Nonce: tx.Nonce(),
Data: tx.Data(),
);