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 19, 2024
1 parent 79eb5dd commit e9a26b1
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 @@ -627,7 +627,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 @@ -703,7 +703,7 @@ public void save() {
savePegoutTxSigHashes();

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

0 comments on commit e9a26b1

Please sign in to comment.