mirror of
				https://github.com/OutCast3k/coinbin.git
				synced 2025-11-04 09:43:34 +01:00 
			
		
		
		
	Merge pull request #198 from jmacxx/fix_issue_193
fix: RBF always set when redeeming OP_CHECKLOCKTIMEVERIFY
This commit is contained in:
		
						commit
						f364ae4b4a
					
				@ -171,7 +171,7 @@ $(document).ready(function() {
 | 
				
			|||||||
			script = sw.redeemscript;
 | 
								script = sw.redeemscript;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		var sequence = false;
 | 
							var sequence = 0xffffffff-1;
 | 
				
			||||||
		if($("#walletRBF").is(":checked")){
 | 
							if($("#walletRBF").is(":checked")){
 | 
				
			||||||
			sequence = 0xffffffff-2;
 | 
								sequence = 0xffffffff-2;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
@ -656,7 +656,7 @@ $(document).ready(function() {
 | 
				
			|||||||
			}
 | 
								}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			if(!$(o).hasClass("has-error")){
 | 
								if(!$(o).hasClass("has-error")){
 | 
				
			||||||
				var seq = null;
 | 
									var seq = 0xffffffff-1;
 | 
				
			||||||
				if($("#txRBF").is(":checked")){
 | 
									if($("#txRBF").is(":checked")){
 | 
				
			||||||
					seq = 0xffffffff-2;
 | 
										seq = 0xffffffff-2;
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user