"throw new RuntimeException("Not supported")" in many funs of RepositoryImpl.java
w1397800 opened this issue · 2 comments
w1397800 commented
There are lots of funs which contains "throw new RuntimeException("Not supported")" in "org.ethereum.db.RepositoryImpl.java".
eg:
public Set getStorageKeys(byte[] addr) {
throw new RuntimeException("Not supported");
}
Is there any implemented function replacing it?
mkalinin commented
It's hardly feasible to support some methods in main repository implementation.
But they are pretty useful in tests, take a look at this implementation
w1397800 commented
thanks for your reply.