aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-06-15 18:16:29 +0800
committerobscuren <geffobscura@gmail.com>2015-06-15 18:16:29 +0800
commit21fa29111b3cd12e3748fcb6310e6a18c5562f17 (patch)
tree511aef50b3d788a0ee109d1ec255d35153f8b3ff /common
parent6d817e16c1c17f7cad4a34fa91457e21f63f2de4 (diff)
downloaddexon-21fa29111b3cd12e3748fcb6310e6a18c5562f17.tar
dexon-21fa29111b3cd12e3748fcb6310e6a18c5562f17.tar.gz
dexon-21fa29111b3cd12e3748fcb6310e6a18c5562f17.tar.bz2
dexon-21fa29111b3cd12e3748fcb6310e6a18c5562f17.tar.lz
dexon-21fa29111b3cd12e3748fcb6310e6a18c5562f17.tar.xz
dexon-21fa29111b3cd12e3748fcb6310e6a18c5562f17.tar.zst
dexon-21fa29111b3cd12e3748fcb6310e6a18c5562f17.zip
core: reduce max allowed queued txs per address
Transactions in the queue are now capped to a maximum of 200 transactions. This number is completely arbitrary.
Diffstat (limited to 'common')
-rw-r--r--common/types.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/common/types.go b/common/types.go
index 183d48fb3..d05c21eec 100644
--- a/common/types.go
+++ b/common/types.go
@@ -1,6 +1,7 @@
package common
import (
+ "fmt"
"math/big"
"math/rand"
"reflect"
@@ -95,3 +96,13 @@ func (a *Address) Set(other Address) {
a[i] = v
}
}
+
+// PP Pretty Prints a byte slice in the following format:
+// hex(value[:4])...(hex[len(value)-4:])
+func PP(value []byte) string {
+ if len(value) <= 8 {
+ return Bytes2Hex(value)
+ }
+
+ return fmt.Sprintf("%x...%x", value[:4], value[len(value)-4])
+}