This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
tendermint
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
221
Wiki
Activity
Browse Source
fix error checking
pull/8062/head
tycho garen
3 years ago
parent
207ee3ece4
commit
14aa2d95dc
1 changed files
with
3 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
node/node.go
+ 3
- 1
node/node.go
View File
@ -745,7 +745,9 @@ func loadStateFromDBOrGenesisDocProvider(stateStore sm.Store, genDoc *types.Gene
return
sm
.
State
{
}
,
err
return
sm
.
State
{
}
,
err
}
}
stateStore
.
Save
(
state
)
if
err
:=
stateStore
.
Save
(
state
)
;
err
!=
nil
{
return
sm
.
State
{
}
,
err
}
}
}
return
state
,
nil
return
state
,
nil
Write
Preview
Loading…
Cancel
Save