Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
julia-zack committed Sep 18, 2024
1 parent b252b88 commit 14712e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rskj-core/src/main/java/co/rsk/peg/BridgeStorageProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ public void setSvpFundTxSigned(BtcTransaction svpFundTxSigned) {
this.isSvpFundTxSignedSet = true;
}

private void saveSvpFundTxHashSigned() {
private void saveSvpFundTxSigned() {
if (!activations.isActive(RSKIP419) || !isSvpFundTxSignedSet) {
return;
}
Expand Down Expand Up @@ -682,7 +682,7 @@ public void save() {
savePegoutTxSigHashes();

saveSvpFundTxHashUnsigned();
saveSvpFundTxHashSigned();
saveSvpFundTxSigned();
saveSvpSpendTxHashUnsigned();
saveSvpSpendTxWaitingForSignatures();
}
Expand Down

0 comments on commit 14712e3

Please sign in to comment.