aboutsummaryrefslogtreecommitdiff
path: root/node.go
diff options
context:
space:
mode:
authorBen Johnson <benbjohnson@yahoo.com>2014-02-21 23:09:24 -0700
committerBen Johnson <benbjohnson@yahoo.com>2014-02-21 23:09:24 -0700
commit7f2fe0e1ed43f121c90cbc8ef7fb9304d15cb868 (patch)
tree7b46bfc96689af14938a9f93aab732e3e46ee709 /node.go
parentMerge pull request #49 from benbjohnson/stat (diff)
parentRefactor Transaction/Bucket API. (diff)
downloaddedo-7f2fe0e1ed43f121c90cbc8ef7fb9304d15cb868.tar.gz
dedo-7f2fe0e1ed43f121c90cbc8ef7fb9304d15cb868.tar.xz
Merge pull request #50 from benbjohnson/api
Refactor Transaction/Bucket API
Diffstat (limited to 'node.go')
-rw-r--r--node.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/node.go b/node.go
index 68f651e..81d2667 100644
--- a/node.go
+++ b/node.go
@@ -8,7 +8,7 @@ import (
// node represents an in-memory, deserialized page.
type node struct {
- transaction *RWTransaction
+ transaction *Transaction
isLeaf bool
unbalanced bool
key []byte