Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tiered Storage #1832

Draft
wants to merge 14 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
fix e2e bug
  • Loading branch information
RodrigoVillar committed Dec 13, 2024
commit 38db9e4fcde26e62cf5dfa8028b816c2203b251f
2 changes: 1 addition & 1 deletion examples/morpheusvm/storage/balance_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type BalanceHandler struct{}

func (*BalanceHandler) SponsorStateKeys(addr codec.Address) state.Keys {
return state.Keys{
string(BalanceKey(addr)): state.Read | state.Write,
string(BalanceKey(addr)): state.All,
}
}

Expand Down
Loading