diff options
author | Matt Joiner <anacrolix@gmail.com> | 2019-11-05 18:52:58 +1100 |
---|---|---|
committer | Matt Joiner <anacrolix@gmail.com> | 2019-11-05 18:52:58 +1100 |
commit | 4aad1712fe1a26f8a27a1edb41c3b2f16bce5f49 (patch) | |
tree | 462b9b235e4e9076e5ad89c52f2f307ecc5dd0b8 | |
parent | No need to reset Tx before putting it in the Pool (diff) | |
download | stm-4aad1712fe1a26f8a27a1edb41c3b2f16bce5f49.tar.gz stm-4aad1712fe1a26f8a27a1edb41c3b2f16bce5f49.tar.xz |
Add stmutil.List
-rw-r--r-- | stmutil/containers.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stmutil/containers.go b/stmutil/containers.go index 89f7b05..e0b532d 100644 --- a/stmutil/containers.go +++ b/stmutil/containers.go @@ -178,3 +178,5 @@ func interfaceHash(x interface{}) uint32 { type Lenner interface { Len() int } + +type List = *immutable.List |