From f75fd9955f65bd3b3f3207e976a0476f2e44b54a Mon Sep 17 00:00:00 2001 From: nicksavers Date: Tue, 8 Jul 2014 00:12:18 +0200 Subject: [PATCH] Add getWorldState() method --- ethereumj-core/src/main/java/org/ethereum/db/Repository.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ethereumj-core/src/main/java/org/ethereum/db/Repository.java b/ethereumj-core/src/main/java/org/ethereum/db/Repository.java index 3bcc9afc..107bfb69 100644 --- a/ethereumj-core/src/main/java/org/ethereum/db/Repository.java +++ b/ethereumj-core/src/main/java/org/ethereum/db/Repository.java @@ -108,6 +108,10 @@ public class Repository { return state; } + + public Trie getWorldState() { + return worldState; + } public AccountState getAccountState(byte[] addr) {